Srini Jagadeesh

Results 2 comments of Srini Jagadeesh

I have the same problem, but I did run `brew install aspell` and then tried `pip3 install aspell-python-py3` I get the same error 'aspell.h' not found. Is there any other...

Found out the solution, I installed using setup.py `module = Extension('aspell',` ` libraries = ['aspell'],` ` library_dirs = ['/usr/local/lib/'],` ` include_dirs = ['/usr/local/include'],` ` sources = ['aspell.c']` `)` `/usr/local/include` is...