2
GCC가 아닌 locate로 찾은 Python.h
방금 간단한 C 실행 파일을 작성하여 Python.h작동 하는지 여부를 확인했습니다. #include<Python.h> #include<stdio.h> int main() { printf("this is a python header file included programm\n"); return 0; } 분명히 많은 일을하지 않습니다. 그러나 그것을 컴파일하려고 gcc하면 오류가 발생합니다. foo.c:1:19: fatal error: Python.h: No such file or directory. 그런 다음 python-dev 패키지가 Python.h설치되어 …