使用Python nltk的时候,可能会遇到LookupError的错误,从错误中可以看到punkt这个模块没有找到
raise LookupError(resource_not_found)
LookupError:
**********************************************************************
Resource u'tokenizers/punkt/english.pickle' not found. Please
use the NLTK Downloader to obtain the resource: >>>
nltk.download()
Searched in:
可以在任何一个地方加一行代码
nltk.download()
这时会弹出一个选择框,选择需要的预料或模块,下载,重新运行代码即可
但是由于网速等原因,相信很多人下载过程中都会出现错误,需要到网上下载nltk_data包放在一下路径下(Windows或Linux)
C:\Users\XXX\AppData\Roaming\nltk_data\ XXX是你的用户名
/root/nltk_data/ (linux)