错误如下:
LookupError:
**********************************************************************
Resource 'taggers/averaged_perceptron_tagger/averaged_perceptron
_tagger.pickle' not found. Please use the NLTK Downloader to
obtain the resource: >>> nltk.download()
Searched in:
- 'C:\\Users\\Dream^hao`/nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
- 'E:\\anaconda3.5\\nltk_data'
- 'E:\\anaconda3.5\\lib\\nltk_data'
- 'C:\\Users\\Dream^hao`\\AppData\\Roaming\\nltk_data'
**********************************************************************
解决方法:
- 下载下面的文件:
链接:https://pan.baidu.com/s/11M1HkeibAd50oU-OmELorQ |
---|
提取码:bcvr |
- 在编写python代码的工具中输入以下代码,得到nltk_data的路径:
import nltk
nltk.data.path
我的结果是:
4. 将上面下载的文件解压到上面的某个目录中,我解压到的是C:\Users\Dream^hao\AppData\Roaming\nltk_data
:
5. 然后程序就可以正常运行了: