如何安装hunspell python软件包?

时间:2018-10-28 08:15:09

标签: anaconda conda miniconda

当我尝试使用点子时, pip install hunspell

我得到一个错误:

  

错误:命令'gcc'失败,退出状态为1

根据此页面,程序包的作者不知道如何使用conda环境安装它:

https://github.com/blatinier/pyhunspell/issues/50

我宁愿继续使用conda而不是切换回“常规” python发行版。

2 个答案:

答案 0 :(得分:2)

康达环境也不例外。我使用了相同的命令,它的工作方式与“常规” python安装相同。

apt-get update
apt-get install python-dev 
apt-get install libhunspell-dev
pip install hunspell

答案 1 :(得分:1)

要在Ubuntu上获取gcc

sudo apt install build-essentials

我建议使用定期维护的软件包CyHunspell

pip install cyhunspell(目前无法通过conda存储库获得)

看来PyHunspellpip install hunspellconda install hunspell)不再维护,最近一次提交是在2年前,而且很容易上班。