通过pip的Python hunspell包安装失败

问题描述 投票:0回答:2

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

知道如何解决这个问题吗?

python pip hunspell
2个回答
1
投票

尝试sudo apt-get install hunspell-dev然后尝试再次安装hunspell(或pyhunspell)

在pyhuspell的github页面上的一个问题中引用了这个问题:https://github.com/blatinier/pyhunspell/issues/22


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。

© www.soinside.com 2019 - 2024. All rights reserved.