(21个答案)17小时前关门了。如何从Python中获取可用的和当前使用的内存?它需要跨平台,并且至少可以在Windows、Mac OS X和Linux上运行。我想向应用程序中的用户报告没有足够的可用内存来继续。
rekjcdws1#
您应该看看psutil:
>>> import psutil >>> psutil.virtual_memory() svmem(total=16717422592, available=5376126976, percent=67.8, used=10359984128, free=1831890944, active=7191916544, inactive=2325667840, buffers=525037568, cached=4000509952, shared=626225152)
1条答案
按热度按时间rekjcdws1#
您应该看看psutil: