Why can't I import nltk?

On windows with 64-bit OS after installing nltk-2.0.4.win-amd64-py2.7.exe from http://www.lfd.uci.edu/~gohlke/pythonlibs/ for my 64-bit python, I launched "import nltk" to get the following error!

Traceback (most recent call last):
  File "<pyshell#25>", line 1, in <module>
    import nltk
  File "C:\Python27\lib\site-packages\nltk\__init__.py", line 131, in <module>
    from inference import *
  File "C:\Python27\lib\site-packages\nltk\inference\__init__.py", line 19, in <module>
    from discourse import (ReadingCommand, CfgReadingCommand,
  File "C:\Python27\lib\site-packages\nltk\inference\discourse.py", line 54, in <module>
    from nltk.sem.glue import DrtGlue
  File "C:\Python27\lib\site-packages\nltk\sem\glue.py", line 13, in <module>
    from nltk.corpus import brown
  File "C:\Python27\lib\site-packages\nltk\corpus\__init__.py", line 70, in <module>
    from reader import *
  File "C:\Python27\lib\site-packages\nltk\corpus\reader\__init__.py", line 85, in <module>
    from nltk.corpus.reader.pl196x import *
  File "C:\Python27\lib\site-packages\nltk\corpus\reader\pl196x.py", line 11, in <module>
    from nltk import tokenize, tree
ImportError: cannot import name tokenize

Suggestions on how to fix this will be greatly appreciated. Thanks

+5
source share
2 answers

I solve this problem as following link. It seems that the Python installer sometimes cannot create the correct registry entries in Win7, users need to manually create them.

Link Link: http://www.fbagirov.com/2012/10/13/installing-nltk-for-python/

+2
source

, "PYTHONPATH" python.

0

All Articles