How To Install Nltk_contrib In Anaconda
The google search for ' how to install nltk_contrib' returns the GITHub link as well as a link from web.mit.edu. The second link mentions an installer for Windows which I could not
Solution 1:
Sounds like you'll have to set it up manually. Use git
to download the entire hierarchy to your computer, move it to the site-packages
of your python or add its location to your PYTHONPATH
, and try it out. Be aware that this code base is not actively maintained -- it hasn't even been ported to Python 3 yet, so if you find something you can use, you'll need to port it yourself or use Python 2.
Anyway this is how you fetch it with git:
git clone https://github.com/nltk/nltk_contrib.git
Or go to https://github.com/nltk/nltk_contrib and use the Download ZIP button to fetch the packages without their history.
Post a Comment for "How To Install Nltk_contrib In Anaconda"