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
知道如何解决这个问题吗?
答案 0 :(得分:1)
尝试
sudo apt-get install hunspell-dev
然后再次尝试安装hunspell(或pyhunspell)
在pyhuspell&#39; github页面的问题中引用了这个问题: https://github.com/blatinier/pyhunspell/issues/22
答案 1 :(得分:0)
尝试:
sudo apt-get install libhunspell-dev
pip install hunspell
...根据pyhunspell的github页面(由John D提供)的同一线程中的建议:https://github.com/blatinier/pyhunspell/issues/22
我无法安装'hunspell-dev',但是我可以安装libhunspell-dev。
答案 2 :(得分:0)
这对我有用
sudo apt-get install libhunspell-dev
python3 -m pip install hunspell
或使用此