本文主要是介绍NLTK raise LookupError(resource_not_found) Resource [93mstopwords[0m not found.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
通过pip install nltk成功安装nltk,准备做一个词性标注的例子,
from nltk.corpus import stopwords
stoplist = stopwords.words('english')
运行代码,出现以下问题:
错误是未找到某个资源,主要原因是缺少stopwords包,解决方法如下:
第一步:进入C:\Windows\System32\drivers\etc文件夹;
第二步:打开hosts文件,在文件莫问添加185.199.108.133 raw.giubusercontent.com(注:在raw.githubusercontent.com前面添加http://出现了错误)
第三步:在命令行中输入import nltk,之后输入nltk.download('stopwords'),执行如下操作
第四步:在执行代码,即可得到正确结果。
这篇关于NLTK raise LookupError(resource_not_found) Resource [93mstopwords[0m not found.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!