-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Textblob not finding the downloaded corpora #474
Comments
I found upgrading from NLTK 3.8.1 to 3.9.1 broke my project. I now get errors asking me to:
Previously you could download textblob corpora on one account and it could be found by another account. This is no longer the case. Moving back to NLTK 3.8.1 fixed it. I can reproduce the issue by upgrading to 3.9.1 again. |
The problem is due the version moving back to the NLTK 3.8.1 can help to rectify the error |
To follow up on this, I fixed it by specifying the NLTK data path and telling NLTK where to look like this:
with NLTK_DATA specified as an environment variable. Then do something like this:
|
How to solve this issue? |
Moving back to NLTK 3.8.1 fixed it. I can reproduce the issue by upgrading to 3.9.1 again. |
Just be aware NLTK <3.9 contains a critical security vulnerability so you're better off specifying the data path like I suggested rather than using an older insecure version. |
Can you tell the solution in detail ?? |
* fix: update corpora module names Updates corpora module names to fix a missing corpora error when running: python -m textblob.download_corpora This should fix CI errors and #482 and #474 * chore: update Python versions and CI Updates supported Python versions to be 3.9-3.13 and updates CI to use the built-in textblob.download_corpora command * fix: corpora download in CI * fix: bring back lowest env in Tox/CI Adds back the "lowest" env in Tox/CI to ensure support in the lowest supported Python + NLTK versions * chore: add johnfraney to Authors.rst * Update changelog * Update changelog --------- Co-authored-by: Steven Loria <sloria1@gmail.com>
fixed in 0.19.0 |
python -m textblob.download_corpora
Although I download the corpora as said in the error message it still does not work.
I ain't sure is it because of the NLTK library or not because I've installed that too.
The text was updated successfully, but these errors were encountered: