gpt4 book ai didi

python - gcc : Unable to find Python. h, 当它在/usr/includes/python2.7 时?

转载 作者:太空狗 更新时间:2023-10-30 01:59:51 27 4
gpt4 key购买 nike

我的 C 代码:

#include<stdio.h>
#include "Python.h"

int main()
{
printf("Hello World");
return 0;
}

我为 python2.7 安装了 python-dev。此外,Python.h/usr/include/python2.7 中可用。

gcc myfile.c # Python.h: 没有那个文件或目录

我什至尝试过:gcc -L/usr/include/python2.7/myfile.c # Python.h: 没有那个文件或目录

我尝试用使用 Python.h 的 pip 构建一个 python c 模块 ujson,它能够编译。

我错过了什么/做错了什么?

最佳答案

应该是-I,不是-L:

gcc -I/usr/include/python2.7 myfile.c

关于python - gcc : Unable to find Python. h, 当它在/usr/includes/python2.7 时?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10945675/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com