我正在尝试安装 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 (Ubuntu/Linaro 4.7.2-2ubuntu1) 4.7.2
libaspell15 已经安装
最佳答案
需要安装 sudo apt-get install libaspell-dev
关于python - aspell-python 安装错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26420839/