安装psutil时提示缺少python.h头文件(作记录)

2018-10-19 06:17:29来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

  通过pip或者源码安装psutil,都会提示缺少python.h头文件,错误提示如下:

...
psutil/_psutil_common.c:9:20: fatal error: Python.h: No such file or directory
 #include <Python.h>
                    ^
compilation terminated.
error: command 'gcc' failed with exit status 1
...

  出现此错误的原因是没有安装python-devel,python开发包,如果是支持yum的系统,直接yum安装即可:

yum -y install python-devel

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:使用scrapy前的环境搭建

下一篇:python基础学习笔记(一)