Distutils找不到Python.h

时间:2011-02-24 11:26:45

标签: python gcc distutils python-c-extension

我有一个带有扩展部分的distutils安装脚本,看起来像这样:

from distutils.core import setup, Extension

my_module = Extension('my_module',
                sources = ['my_file.c', 'my_other_file.c'])

setup (name = 'my_module',
       version = '1.0',
       description = 'My module',
       ext_modules = [my_module])

在我的Mac上正常运行setup.py build。当我搬到Debian机器时,它失败了:

error: Python/Python.h: No such file or directory

我已安装python2.6python2.6-dev,该文件位于/usr/include/Python2.6

它为问题文件执行的命令:

gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c my_module.c -o -build/XYZ/my_module.o

所以它传递了头文件的位置。

Mac与Linux环境之间唯一明显的区别是gcc-4.2 vs gcc-4.4和Python 2.7 vs Python 2.6

想法?

编辑:

在相关的C文件中:

#include <Python/Python.h>
#include <Python/structmember.h>

2 个答案:

答案 0 :(得分:5)

可能在您的模块中,您需要include "Python.h"而不是"Python/Python.h"

或者您可以尝试导出包含路径,并尝试使用gcc或g ++再次编译?

export C_INCLUDE_PATH=/usr/include/python2.6:$C_INCLUDE_PATH
export CPLUS_INCLUDE_PATH=/usr/include/python2.6:$CPLUS_INCLUDE_PATH

答案 1 :(得分:1)

在我的情况下,我错过了python3-dev,sudo apt-get install python3-dev修复了它。