Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

aspell-python installation error

I am trying to install aspell-python package for spell correction. Facing problem while installing the package.

Error :

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 is already install version gcc (Ubuntu/Linaro 4.7.2-2ubuntu1) 4.7.2

libaspell15 is already install

like image 506
iNikkz Avatar asked Dec 26 '22 03:12

iNikkz


1 Answers

Need to install sudo apt-get install libaspell-dev

like image 143
iNikkz Avatar answered Dec 27 '22 15:12

iNikkz