MacOS上的psutil错误


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 systemn".format(
    when=when, mb=mem, maxmb=maxmem, user=ts.user, system=ts.system))

我正在尝试使用上面的代码。但是我得到" attributeError:'process'对象没有属性'get_memory_info'"我在python 2.7,psutil 5.0.0和macos sierra

谢谢。

过程类没有名为 get_memory_info的方法。它具有memory_full_info()memory_info() PSUTIL.PROCESS

Metmirr的其他信息已从MacOS中删除,这可能就是为什么人们仍然会遇到此信息。

在版本5.6.0中更改:删除了MacOS支持,因为固有 破碎(请参阅第1291页)

相关内容

  • 没有找到相关文章

最新更新