1

I have problem with installing natural language toolkit for python 2.7. I have NLTK already installed and now i am trying to install necessary data.

I type into shell:

import nltk
nltk.download()

NLTK downloader appears (TKinter window). I choose to download all packages and start downloading. Everything goes well. Until i get message "error with downlaoded zip file" and process stops.

I am using windows 7 and 64-bit python 2.7.

Please help

e h
  • 8,435
  • 7
  • 40
  • 58
user2904150
  • 149
  • 1
  • 1
  • 9

2 Answers2

1

When I downloaded the NLTK data I had to run the downloader several times since it kept hanging.

Alternatively here is a list of the individual files: http://nltk.org/nltk_data/

You can grab framenet_v15 here: http://nltk.github.com/nltk_data/packages/corpora/framenet_v15.zip

e h
  • 8,435
  • 7
  • 40
  • 58
  • http://nltk.github.com/nltk_data/packages/corpora/framenet_v15.zip is removed and it redirect to nltk website itself. – Biswanath Jan 13 '14 at 14:52
1

I have issues with the nltk.download() and it failed multiple times. So try installing nltk data from the command prompt. Run the command python -m nltk.downloader all.

Muhammad Abdul-Rahim
  • 1,980
  • 19
  • 31