我已经安装了 psutil,我可以很好地导入它并使用它来提取信息,如果我显示所有模块,我可以看到它已安装。但是,如果我运行下面的代码
try:
imp.find_module('psutil')
pass
except ImportError:
print 'This program needs psutil to work, as this is not installed the script will now exit'
sys.exit()`
它说它没有安装。我在脚本中有这段代码,它可以在 Windows、Solaris、Linux 上运行,而不是我的 Mac。
任何帮助表示赞赏