我的 C 代码:
#include<stdio.h>
#include "Python.h"
int main()
{
printf("Hello World");
return 0;
}
我已经python-dev
为 python2.7 安装了。此外,Python.h
可在/usr/include/python2.7
.
gcc myfile.c
# Python.h: 没有这样的文件或目录
我什至尝试过:
gcc -L/usr/include/python2.7/ myfile.c
# Python.h:没有这样的文件或目录
ujson
我尝试使用 pip构建一个 python c 模块Python.h
,它能够编译。
我错过了什么/做错了什么?