我通过python3 -m pip install nltk的时候安装成功后,准备做一个词性标注的例子,但是出现如下错误,说某个资源没有找到;解决方法如下:
错误截图:Resource punkt not found
解决方法:(命令行操作-打开nltk下载器)
python3
import nltk
nltk.download()
然后在server index输入官网链接,然后从Corpora 、models、等列表中找到自己需要的资源,然后进行安装:
我通过python3 -m pip install nltk的时候安装成功后,准备做一个词性标注的例子,但是出现如下错误,说某个资源没有找到;解决方法如下:
错误截图:Resource punkt not found
解决方法:(命令行操作-打开nltk下载器)
python3
import nltk
nltk.download()
然后在server index输入官网链接,然后从Corpora 、models、等列表中找到自己需要的资源,然后进行安装: