赞
踩
python2的虚拟环境在使用pip install nltk安装nltk后出现无法import的问题。原因是现在默认安装的nltk版本是适合python3的,所以会出错。解决办法是使用如下命令安装适合python2版本的nlkt:
pip install nltk==3.4.5