fatal error: Python.h: No such file or directory #include "Python.h" 해결하기
python 2017. 10. 10. 14:09python 컴파일시 아래와 같은 python 에러가 발생할 수 있다.
gevent/gevent.corecext.c:5:20: fatal error: Python.h: No such file or directory
#include "Python.h"
^
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
python 개발 라이브러리가 없어서 에러가 발생한 것이다.
python 2.x라면 다음과 같이 실행한다.
$ sudo apt-get install python-dev
python 3.x라면 다음과 같이 실행한다.
$ sudo apt-get install python3-dev
'python' 카테고리의 다른 글
jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'iteritems' 에러 해결 (0) | 2017.10.11 |
---|---|
virtualenv 셋팅하는 방법(python3) (0) | 2017.10.10 |
[python3] ++ 연산자 (0) | 2017.09.28 |
python2와 python3의 차이점 - string.decode() (0) | 2017.09.28 |
[python3] 파이썬 값/타입 확인 예제 (0) | 2017.09.28 |