hunspell python包的安装(通过pip)失败,出现以下错误:
hunspell.c:21:22: fatal error: hunspell.h: No such file or directory
#include <hunspell.h>
^
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
知道如何解决这个问题吗?
尝试sudo apt-get install hunspell-dev
然后尝试再次安装hunspell(或pyhunspell)
在pyhuspell的github页面上的一个问题中引用了这个问题:https://github.com/blatinier/pyhunspell/issues/22
尝试:
sudo apt-get install libhunspell-dev
pip install hunspell
...在pyhunspell的github页面(由John D提供)中的相同线程中推荐:https://github.com/blatinier/pyhunspell/issues/22
我无法安装'hunspell-dev',但我可以安装libhunspell-dev。