我尝试使用命令 -
将python脚本转换为cython文件cython --embed -o front.c front.py
然后我尝试使用gcc编译器使用以下命令编译 -
gcc -c front.c -I\C:\Users\Akhil\AppData\Local\Programs\Python\Python36-32\include\
我收到以下错误,指出找不到Python.h文件。
front.c:4:20: fatal error: Python.h: No such file or directory
compilation terminated.
我已经验证python目录中存在Python.h。可能是什么原因导致不编译cython文件?我是否必须遵循任何额外的命令来编译它?