Getting 405 error while trying to download nltk data

送分小仙女□ 提交于 2019-11-27 15:32:03

This is caused by a down-age of Github raw file link.

Meanwhile a stop-gap solution would be to manually download the file:

PATH_TO_NLTK_DATA=/home/username/nltk_data/
wget https://github.com/nltk/nltk_data/archive/gh-pages.zip
unzip gh-pages.zip
mv nltk_data-gh-pages/ $PATH_TO_NLTK_DATA

We're working on finding an alternative to the data and model downloading.

Meanwhile, @everyone please help to check that your script(s) and make sure that you're not overloading the data downloads! Thank you in advance!!

Please check https://github.com/nltk/nltk/issues/1787 for latest updates on this issue.

For MacOSX - small modification to the above answer:

PATH_TO_NLTK_DATA=~/nltk_data/
wget https://github.com/nltk/nltk_data/archive/gh-pages.zip
unzip gh-pages.zip
mv nltk_data-gh-pages/packages/ $PATH_TO_NLTK_DATA

Note that this is a big download (~700MB).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!