python nltk下载问题-我试图下载nltk工具包的停用词,但这个错误不断出现[重复]

o8x7eapl  于 2023-11-16  发布在  Python
关注(0)|答案(1)|浏览(155)

此问题在此处已有答案

Error(urlopen) while downloading data from python shell (nltk)(2个答案)
昨天就关门了。
我输入这个是为了下载停用字词
然后我得到了这个错误请帮助我
代码--

import nltk
nltk.download('stopwords')

字符串
输出-

[nltk_data] Error loading stopwords: <urlopen error [Errno 54]
[nltk_data]     Connection reset by peer>

False


请向我解释一下究竟什么是urlopen错误发生了什么?
我正在尝试下载停用字词

zz2j4svz

zz2j4svz1#

解决这个问题的一种方法是手动安装NLTK包。
打开一个终端
根据您的配置,键入python3python
型号import nltk
型号nltk.download()
查找并安装所需的软件包

相关问题