我有一个带有扩展部分的 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])
setup.py build
在我的 Mac 上运行正常。当我移动到 Debian 机器时,它失败了:
error: Python/Python.h: No such file or directory
我已经安装python2.6
并python2.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 与 gcc-4.4 以及 Python 2.7 与 Python 2.6
想法?
编辑:
在有问题的 C 文件中:
#include <Python/Python.h>
#include <Python/structmember.h>