NLTK是一个比较优秀的自然语言处理工具包,通常使用如下命令下载
import nltk
nltk.download()
但是如果你的证书验证失败会报如下错误
添加如下代码即可
import nltk
import ssl
try:
_create_unverified_https_context = ssl._create_unverified_context
except AttributeError:
pass
else:
ssl._create_default_https_context = _create_unverified_https_context
nltk.download()
网友评论