psutil模块安装
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了psutil模块安装相关的知识,希望对你有一定的参考价值。
首先,psutil安装(本文是在干净的ubuntu14.04系统上进行安装):
先切换root权限,切换到管理员权限(sudo -s)
wget https://pypi.python.org/packages/source/p/psutil/psutil-2.1.3.tar.gz
tar -zxvf psutil-2.1.3.tar.gz
cd psutil-2.1.3
pythonsetup.py install
注意:若在安装时报错:
psutil/_psutil_linux.c:12:20:fatalerror:Python.h:没有那个文件或目录
#include<Python.h>
^
compilationterminated.
error:command‘x86_64-linux-gnu-gcc‘failedwithexitstatus1
可以这样解决:
apt-get install python-dev
本文出自 “一颗正在成长的小树” 博客,请务必保留此出处http://growing2015.blog.51cto.com/12006344/1904532
以上是关于psutil模块安装的主要内容,如果未能解决你的问题,请参考以下文章
安装Python的psutil模块时报错:error: command 'gcc' failed with exit status 1