python -m nltk.downloader stopwords

    (2)无法科学上网的,提供一个我下载的压缩包,供大家使用:
  https://pan.baidu.com/s/1oDzKa_IDFSX1L3SmEAIUWA

    提取码:1lw5

    看在我这么善良的份上,求一个关注不过分吧?

  stopwords压缩包放在哪里可以参考这两篇文章:
https://blog.csdn.net/weixin_46649052/article/details/118584847
https://blog.csdn.net/weixin_44288520/article/details/124886191

Resource stopwords not found. Please use the NLTK Downloader to obtain the resource: >>> import nltk >>> nltk.download('stopwords') Attempted to load corpora/stopwords Searched ...
解决Resource stopwords not found.报错如下解决方法 --------------------------------------------------------------------------- LookupError Traceback (most recent call last) E:\Users\TFX\Anaconda3\envs\tensorflow24\lib\site-packages
报错 Resource gutenberg not found.Please use the NLTK Downloader to obtain the resource: ********************************************************************** Resource gutenberg not found. Please use the NLTK Downloader to obtain the resource:
NLTKResource punkt not found. Please use the NLTK Downloader to obtain the resource:2步解决
回家前,把python自然语言处理的nltk_data打包到360云盘,然后共享给朋友们,省的大家像我一样浪费时间。一次性下载解压后即可使用。官方的nltk.download()老是下载失败。无数遍了。浪费了我很多很多时间。 打包下载(推荐):http://yunpan.cn/cgGUPFzF3spir (提取码:504e) 下载后放在python/nltk_data目录下即可.
报错cannot find reference 'stopwords' in '_init_.py'。安装NLTK数据 一个菜鸡在使用stopwords时报错:cannot find reference ‘stopwords’ in ‘init.py’ 我晓得的原因有二: 1.导包错误。应该是from nltk.corpus import stopwords.我之前写的时候发现我写错了:from ...
用python帮财务室友写了两个操作EXCEL表格读写汇总数据的程序,发现出现如下错误: 在官网http://nltk.org/nltk_data/下载gutenberg这个包(需要翻墙),放到指定路径里,然后再添加环境变量,重新运行即可,但是报错的不止少这个还少了其他包
Python报错 Resource punkt not found. Please use the NLTK Downloader to obtain the resource:
这个报错是因为在使用Python NLTK(自然语言工具包)时缺少必要的语料库资源。你需要使用NLTKDownloader来获取这个资源。具体操作步骤为:打开Python解释器,输入以下的命令: import nltk nltk.download('punkt') 这个命令将会下载并安装所需要的资源。如果你安装的是conda,请在anaconda prompt中运行命令。