Reputation: 149
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
Upvotes: 1
Views: 1337
Reputation: 11
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
.
Upvotes: 1
Reputation: 8893
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
Upvotes: 1