致命错误:Python.h:没有这样的文件或目录
我正在尝试使用C扩展文件构建共享库,但首先我必须使用以下命令生成输出文件:
gcc -Wall utilsmodule.c -o Utilc
执行命令后,我得到以下错误消息:
utilsmodule.c:1:20
:致命错误:Python.h:没有此类文件或目录编译终止。
实际上我已经尝试了所有建议的解决方案,但是问题仍然存在…我也没有问题Python.h
。我设法在我的机器上找到该文件……以前有人遇到过同样的问题吗??
回答:
看来你尚未正确安装python dev的标头文件和静态库。使用软件包管理器在系统范围内安装它们。
对于apt
(Ubuntu,Debian …):
sudo apt-get install python-dev # for python2.x installssudo apt-get install python3-dev # for python3.x installs
对于yum
(CentOS,RHEL …):
sudo yum install python-devel # for python2.x installssudo yum install python3-devel # for python3.x installs
对于dnf
(Fedora …):
sudo dnf install python2-devel # for python2.x installssudo dnf install python3-devel # for python3.x installs
对于zypper
(openSUSE …):
sudo zypper in python-devel # for python2.x installssudo zypper in python3-devel # for python3.x installs
对于apk(Alpine …):
# This is a departure from the normal Alpine naming# scheme, which uses py2- and py3- prefixes
sudo apk add python2-dev # for python2.x installs
sudo apk add python3-dev # for python3.x installs
对于apt-cyg(Cygwin …):
apt-cyg install python-devel # for python2.x installsapt-cyg install python3-devel # for python3.x installs
以上是 致命错误:Python.h:没有这样的文件或目录 的全部内容, 来源链接: utcz.com/qa/425919.html