C语言 Visual Studio CL.exe cannot find python.h



我正在尝试将这一行包含在我的 .c 代码中

#include <Python.h>

我在我的helloworld.c中所拥有的只是

#include <stdio.h>
#include <Python.h>
int main()
{
printf("Hi, this is me. n");
system("pause");
return 0;
}

我还没有写任何使用 python.h 的东西,因为我无法 编译。这是我得到的错误:

fatal error C1083: Cannot open include file: 'Python.h': No such file or directory

我正在使用 CL.exe,Visual Studio 2017 的命令行编译器来运行它:

cl /LD helloworld.c

如何让编译器知道我的 python.h 在哪里?

cl /LD /I C:pythoninclude hello.c C:pythonlibspython36.lib

相关内容

  • 没有找到相关文章

最新更新