私の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: No such file or directory
ujson
を使用する pip でpython c モジュールをビルドしてみたところPython.h
、コンパイルできました。
私は何が欠けていますか/間違っていますか?