温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Python系统性能信息模块psutil安装报错解决一例

发布时间:2020-08-11 08:26:22 来源:ITPUB博客 阅读:243 作者:chenfeng 栏目:建站服务器
今天在执行python脚本时报如下错误:

[root@localhost ~]# python mysql_watcher.py -p dbset.ini
Traceback (most recent call last):
  File "mysql_watcher.py", line 17, in <module>
    import psutil
ImportError: No module named psutil


经查询,psutil是python的系统性能信息模块,正确的安装方法如下:


[root@localhost ~]# yum install python-setuptools
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
 * base: mirror.bit.edu.cn
 * extras: mirrors.btte.net
 * updates: mirror.bit.edu.cn
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package python-setuptools.noarch 0:0.6.10-3.el6 will be installed
--> Finished Dependency Resolution


Dependencies Resolved


=============================================================================================================================================================
 Package                                     Arch                             Version                                   Repository                      Size
=============================================================================================================================================================
Installing:
 python-setuptools                           noarch                           0.6.10-3.el6                              base                           336 k


Transaction Summary
=============================================================================================================================================================
Install       1 Package(s)


Total download size: 336 k
Installed size: 1.5 M
Is this ok [y/N]: y
Downloading Packages:
python-setuptools-0.6.10-3.el6.noarch.rpm                                                                                             | 336 kB     00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing : python-setuptools-0.6.10-3.el6.noarch                                                                                                     1/1
  Verifying  : python-setuptools-0.6.10-3.el6.noarch                                                                                                     1/1


Installed:
  python-setuptools.noarch 0:0.6.10-3.el6


Complete!
[root@localhost ~]# easy_install psutil
Searching for psutil
Reading http://pypi.python.org/simple/psutil/
Best match: psutil 5.2.2
Downloading https://pypi.python.org/packages/57/93/47a2e3befaf194ccc3d05ffbcba2cdcdd22a231100ef7e4cf63f085c900b/psutil-5.2.2.tar.gz#md5=bb98d48796cd76d9ccee871aad720f9c
Processing psutil-5.2.2.tar.gz
Running psutil-5.2.2/setup.py -q bdist_egg --dist-dir /tmp/easy_install-aRZwy3/psutil-5.2.2/egg-dist-tmp-EDoxRo
warning: manifest_maker: MANIFEST.in, line 14: 'recursive-include' expects <dir> <pattern1> <pattern2> ...
warning: no previously-included files matching '*' found under directory 'docs/_build'
warning: no previously-included files matching '*' found under directory '.ci'
psutil/_psutil_linux.c: In function ‘psutil_proc_cpu_affinity_set’:
psutil/_psutil_linux.c:426: warning: suggest explicit braces to avoid ambiguous ‘else’
psutil/_psutil_linux.c: In function ‘init_psutil_linux’:
psutil/_psutil_linux.c:630: warning: unused variable ‘v’
Adding psutil 5.2.2 to easy-install.pth file


Installed /usr/lib/python2.6/site-packages/psutil-5.2.2-py2.6-linux-x86_64.egg
Processing dependencies for psutil
Finished processing dependencies for psutil

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI