在Ubuntu 18.04上通过conda安装textblob时出错

时间:2020-07-22 13:56:26

标签: python-3.x conda ubuntu-18.04 textblob

我尝试过

chk

$ conda install -c conda-forge textblob

this link之后,但出现以下错误-

$ python -m textblob.download_corpora

有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

我可以看到您使用了Python-3.x标记,因此我认为您已经在蟒蛇上安装了蟒蛇3,但是您已经使用了 python -m textblob.download_corpora 。这可能是一个问题:https://github.com/sloria/TextBlob/issues/197

尝试以下命令

$ python3 -m textblob.download_corpora

此外,如果仍然出现错误,请在this链接中找到Ubuntu中以下命令:

$ git clone https://github.com/sloria/TextBlob.git
$ python3 setup.py install

此外,看看here。让我知道您是否仍然遇到问题。