我是python的新手,我正在学习一本使用NLTK(CookBook)的Python3。我已经通过在Cmd中编写 pip install nltk 成功地安装了nltk软件包。现在我试图安装像这样的webtext和pyechant库,但是我遇到了这个问题:
这也是代码,这些是我遇到的错误 代码:
.default
错误:
from nltk.collocations import TrigramCollocationFinder
from nltk.metrics import TrigramAssocMeasures
words = [w.lower() for w in webtext.words('singles.txt')]
tcf = TrigramCollocationFinder.from_words(words)
tcf.apply_word_filter(filter_stops)
tcf.apply_freq_filter(3)
print(tcf.nbest(TrigramAssocMeasures.likelihood_ratio, 4))
答案 0 :(得分:1)
添加
从nltk.corpus导入网络文本
,然后还要确保下载:
nltk.download('webtext')