macos上的psutil错误

时间:2016-12-07 07:53:55

标签: python macos macos-sierra

def showMemTime(when='Resources'):
  global maxmem
  # memory and time measurement
  process = psutil.Process(os.getpid())
  mem = process.get_memory_info()[0] / float(2 ** 20)
  maxmem = max(maxmem, mem)
  ts = process.get_cpu_times()
  sys.stderr.write("{when:<20}: {mb:4.0f} MB (max {maxmb:4.0f} MB), {user:4.1f} s user, {system:4.1f} s system\n".format(
    when=when, mb=mem, maxmb=maxmem, user=ts.user, system=ts.system))

我试图使用上面的代码。但我得到&#34;属性错误:&#39;过程&#39;对象没有属性&#39; get_memory_info&#39;&#34;我在Python 2.7,psutil 5.0.0和macOS Sierra

谢谢。

2 个答案:

答案 0 :(得分:3)

流程类没有名为get_memory_info的方法。它有memory_full_info()memory_info() psutil.Process

答案 1 :(得分:0)

metmirr的其他信息已从macOS中删除,这可能就是为什么人们仍然遇到此问题的原因。

在5.6.0版中进行了更改:删除了macOS支持,因为其本质上是 损坏(请参阅问题#1291)