导入错误,当我在NLTK Python中导入nltk.corpus.framenet时

时间:2013-12-05 14:22:01

标签: python nltk

我必须在nltk.corpus中使用framenet。所以,我使用nltk.download()下载了该语料库。而framenet目录现在是C:\ nltk_data \ corpora \ framenet_v15 ......

但是当我导入那个framenet时,我不能。我找不到原因。 我想要一些如这里所解释的作品; http://nltk.org/howto/framenet.html

>>> import nltk.corpus.framenet

Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    import nltk.corpus.framenet
ImportError: No module named framenet

请帮帮我。感谢。

1 个答案:

答案 0 :(得分:1)

在您的链接中导入如下:

from nltk.corpus import framenet

你试过吗?

编辑:NLTK的3.0及以上版本在nltk.corpus.reader包中有framenet,所以它应该是:

from nltk.corpus.reader import framenet