4

我在 Ubuntu 13.10 中安装了python(2.7.5) 和python-nltk软件包。运行apt-cache policy python-nltk返回:

python-nltk:
  Installed: 2.0~b9-0ubuntu4

根据斯坦福网站,2.0+ 应该有stanford模块。然而,当我尝试导入它时,出现错误:

>>> import nltk.tag.stanford
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named stanford

如何获得斯坦福模块?(最好通过通常的存储库,因为我不喜欢在 Ubuntu 包管理器之外安装软件。)

4

1 回答 1

8

您需要使用 NLTK 下载器:

import nltk
nltk.download()
于 2013-10-31T09:27:12.687 回答