Python报错 Resource punkt not found. Please use the NLTK Downloader to obtain the resource:
时间: 2023-06-12 20:05:04 浏览: 277
Resource ‘taggers/averaged_perceptron_tagger/averaged_perceptron _tagger.pickle’ not found.
这个报错是因为在使用Python NLTK(自然语言工具包)时缺少必要的语料库资源。你需要使用NLTK的Downloader来获取这个资源。具体操作步骤为:打开Python解释器,输入以下的命令:
import nltk
nltk.download('punkt')
这个命令将会下载并安装所需要的资源。如果你安装的是conda,请在anaconda prompt中运行命令。
阅读全文