python - LookupError : from nltk. 图书导入*

标签 python import ipython nltk anaconda

在 iPython 控制台中,我输入了 from nltk.book import 并且出现了几个 LookupErrors。下面显示了我得到的代码。

*** Introductory Examples for the NLTK Book ***
Loading text1, ..., text9 and sent1, ..., sent9
Type the name of the text or sentence to view it.
Type: 'texts()' or 'sents()' to list the materials.
---------------------------------------------------------------------------
LookupError Traceback (most recent call last)
<ipython-input-3-8446809acbd4> in <module>()
 ----> 1 from nltk.book import*

C:\Users\dell\Anaconda\lib\site-packages\nltk-3.0.3-py2.7.egg\nltk\book.py in <module>()
 20 print("Type: 'texts()' or 'sents()' to list the materials.")
 21 
---> 22 text1 = Text(gutenberg.words('melville-moby_dick.txt'))
 23 print("text1:", text1.name)
 24 

 C:\Users\dell\Anaconda\lib\site-packages\nltk-3.0.3-py2.7.egg\nltk\corpus\util.pyc in __getattr__(self, attr)
 97             raise AttributeError("LazyCorpusLoader object has no attribute '__bases__'")
 98 
 ---> 99         self.__load()
100         # This looks circular, but its not, since __load() changes our
101         # __class__ to something new:

 C:\Users\dell\Anaconda\lib\site-packages\nltk-3.0.3-py2.7.egg\nltk\corpus\util.pyc in __load(self)
 62             except LookupError as e:
 63                 try: root = nltk.data.find('corpora/%s' % zip_name)
 ---> 64                 except LookupError: raise e
 65 
 66         # Load the corpus.

 LookupError: 
 **********************************************************************
 Resource u'corpora/gutenberg' not found.  Please use the NLTK
 Downloader to obtain the resource:  >>> nltk.download()
 Searched in:
- 'C:\\Users\\dell/nltk_data'
- 'C:\\nltk_data'
- 'D:\\nltk_data'
- 'E:\\nltk_data'
- 'C:\\Users\\dell\\Anaconda\\nltk_data'
- 'C:\\Users\\dell\\Anaconda\\lib\\nltk_data'
- 'C:\\Users\\dell\\AppData\\Roaming\\nltk_data'
**********************************************************************

In [4]: 

我能知道为什么会出现这些错误吗?

最佳答案

您在 nltk.book 中缺少 Gutenberg 语料库,因此出现错误。 该错误是 self 描述的。

您需要使用nltk.download() 下载语料库。 enter image description here

下载语料库后,重新运行命令并检查错误是否再次出现。如果是这样,那将是另一个语料库。也下载那个语料库。

from nltk.book import * 不是首选方法,建议只导入您将在代码中使用的语料库。 您可以改用 from nltk.corpus import gutenberg

参见 link 上的引用资料

关于python - LookupError : from nltk. 图书导入*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30908903/

相关文章:

MATLAB : import package for base class

python - 创建具有多个匹配项的新列

python - 删除数据框侧括号中的内容

python - 将多个嵌套列表转换为整数

postgresql - PG COPY错误: invalid input syntax for integer

java - 在java中从jar导入文件时出错

scipy - 将新的 ipython 笔记本上传到 wakari

emacs - 在 Emacs 中修改光标下的面,包括在 ansi-term 上

c++ - 无法捕获异常!

python - IPython Notebook 中的 In [*] 是什么意思以及如何关闭它?