导入nltk时出现问题,在python3提示符下运行时出错

时间:2017-01-30 05:58:10

标签: nltk

我使用命令在

  

sudo apt-get install python3-nltk   当这不起作用时,我也尝试使用pip

当我尝试检查python3上的安装提示时,它给出了我的错误: enter image description here

如何解决此错误?

1 个答案:

答案 0 :(得分:0)

您可以通过PIP安装NLTK。首先,你必须为python3安装pip。

sudo apt-get install python3-pip

然后通过运行:

检查pip是否安装成功
pip3 -V

你必须采取类似的东西

pip 9.0.1 from /usr/lib/python3.6/site-packages (python 3.6)

使用pip3运行后安装nltk:

sudo pip3 install -U nltk