欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-06-22 11:46:30
通过pip或者源码安装psutil,都会提示缺少python.h头文件,错误提示如下: 出现此错误的原因是没有安装python-devel,python开发包,如果是支持yum的系统,直接yum安装即可: ......

  通过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