gpt4 book ai didi

python - 导入 nltk 库时未找到语料库/停用词

转载 作者:IT老高 更新时间:2023-10-28 22:02:03 25 4
gpt4 key购买 nike

我尝试在 python 2.7 中导入 nltk 包

  import nltk
stopwords = nltk.corpus.stopwords.words('english')
print(stopwords[:10])

运行它会给我以下错误:

LookupError: 
**********************************************************************
Resource 'corpora/stopwords' not found. Please use the NLTK
Downloader to obtain the resource: >>> nltk.download()

因此,我打开了我的 python 终端并执行了以下操作:

import nltk  
nltk.download()

这给了我:

showing info https://raw.githubusercontent.com/nltk/nltk_data/gh-pages/index.xml

然而,这似乎并没有停止。再次运行它仍然给我同样的错误。有什么想法会出错吗?

最佳答案

您当前正在尝试下载 nltk 数据中的每个项目,因此这可能需要很长时间。您可以尝试只下载您需要的停用词:

import nltk
nltk.download('stopwords')

或从命令行(感谢 Rafael Valero's answer):

python -m nltk.downloader stopwords

引用:

关于python - 导入 nltk 库时未找到语料库/停用词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41610543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com