Skip to content Skip to sidebar Skip to footer

Installing Natural Language Toolkit Data

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

Solution 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

Solution 2:

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.

Post a Comment for "Installing Natural Language Toolkit Data"