在使用nltk的时候,出现类似:Resource punkt not found的时候解决方法

时间:2024-04-11 16:35:36

我通过python3 -m pip install nltk的时候安装成功后,准备做一个词性标注的例子,但是出现如下错误,说某个资源没有找到;解决方法如下:

错误截图:Resource punkt not found

在使用nltk的时候,出现类似:Resource punkt not found的时候解决方法

解决方法:(命令行操作-打开nltk下载器)

python3

import nltk

nltk.download()

在使用nltk的时候,出现类似:Resource punkt not found的时候解决方法

然后在server index输入官网链接,然后从Corpora 、models、等列表中找到自己需要的资源,然后进行安装:

在使用nltk的时候,出现类似:Resource punkt not found的时候解决方法