安装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
下一篇: 通用管理系统顶部及侧面导航栏简易制作