[ubuntu] utilsmodule.c:1:20: fatal error: Python.h: No such file or directory compilation terminated.

2017. 5. 19. 00:56카테고리 없음

우분투에서 다음과 같은 에러가 난다면


utilsmodule.c:1:20: fatal error: Python.h: No such file or directory compilation terminated.



Python.h 에 문제가 있는 건 아닐까 의심할수도 있겠지만...나처럼 ㄷㄷ


os에 맞춰서 다음과 같이 패키지를 설치해 주면 끝!



For apt (ubuntu, debian...):

sudo apt-get install python-dev  # for python2.x installs
sudo apt-get install python3-dev  # for python3.x installs

For yum (centos, redhat, fedora...):

sudo yum install python-devel