Cython致命错误:Python.h没有这样的文件或目录

时间:2016-01-08 02:46:18

标签: python c gcc cython

我一直在使用Cython将我的Python文件编译成C文件,然后使用MinGW从C文件创建可执行文件。 Cython工作正常,我可以在命令行中键入cython test.pyx并获取一个C文件。问题是当我尝试从C文件编译可执行文件时。如果我输入gcc test.c,我会收到以下错误:

test.c:4:20: fatal error: Python.h: No such file or directory
 #include "Python.h"
                    ^
compilation terminated.

我真的很感激一些帮助。我正在运行Windows 7和python 3.5。

2 个答案:

答案 0 :(得分:7)

你可能没有安装python-dev。根据您的操作系统,您需要执行以下操作:

sudo apt-get install python-dev

你在Ubuntu上做的是什么

答案 1 :(得分:5)

在gcc中

#include "file.h"

告诉gcc在test.c所在的同一目录中找到该文件,并且

#include <file.h>

表示在gcc包含路径中查找file.h,可以使用-I

添加
gcc -I/path/to/the/file_h test.c
你可以尝试

#include <Python.h>

另见fatal error: Python.h: No such file or directory