import nltk
nltk.download('punkt')
报错 :[nltk_data] Error loading all: <urlopen error [Errno 11001]
[nltk_data] getaddrinfo failed>
1.先是改了hosts文件 添加 199.232.68.133 http://raw.githubusercontent.com
没有起作用 又删除了
2. https://stackoverflow.com/questions/27750608/error-installing-nltk-supporting-packages-nltk-download
跟着这篇解决方案修改
import nltk
nltk.download()
运行 跳出图形化下载界面 File->Change Server Index
改成 http://nltk.org/nltk_data/
界面上可以成功显示下载包,但是下载链接还是从raw.githubusercontent.com下载
下载失败
3.最后直接访问 http://nltk.org/nltk_data/ 下载所需要的包
解压到 nltk_data 目录 成功