2014-10-17 2 views
2

aspell-python 패키지을 맞춤법 검사에 설치하려고합니다. 패키지를 설치하는 중에 문제가 발생했습니다 ().aspell-python 설치 오류

오류 :

python setup.py install 
running install 
running build 
running build_ext 
building 'aspell' extension 
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c aspell.c -o build/temp.linux-i686-2.7/aspell.o 
aspell.c:53:20: fatal error: aspell.h: No such file or directory 
compilation terminated. 
error: command 'gcc' failed with exit status 1 

GCC 이미 버전 GCC를 설치한다 (우분투/리나 4.7.2-2ubuntu1) 4.7.2

libaspell15 이미 설치되어

답변

5

설치가 필요합니다. sudo apt-get install libaspell-dev

+0

@SSA, 틀렸을 수도 있지만 Nikkz가 방금 자신의 질문에 대답했다고 생각합니다. 어떤 경우에 그것은 유효합니다. – DB5