使用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)
答案 0 :(得分:1)
尝试像这样from nltk.corpus import stopwords