python错误:ModuleNotFoundError:没有名为“ NLTK”的模块

时间:2018-12-03 11:52:56

标签: python python-3.x ubuntu nltk

使用Ubuntu终端,当我键入python然后写import nltk时,该包确实起作用了,但是当我在.py文件中使用'import nltk'并运行命令:python pyfile.py时,我得到了此消息:error: ModuleNotFoundError: No module named 'NLTK'

从安装pip3到在python3中重新安装nltk,我几乎尝试了所有操作,这可能是什么问题?注意我正在使用python 3.6

代码如下:

from NLTK.corpus import stopwords
stopWords = stopwords.words('english')
vectorizer = CountVectorizer(stop_words = stopWords)

1 个答案:

答案 0 :(得分:1)

尝试像这样from nltk.corpus import stopwords