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()
해결.
'개발 > Python' 카테고리의 다른 글
pyinstaller 로 실행파일 만들기 (0) | 2019.05.24 |
---|---|
ipynb 주피터노트북 파일 py로 변환하기 (0) | 2019.05.24 |
mac tensorflow 설치 (0) | 2019.05.22 |
Jupyter notebook 명령어로 안켜질때 (0) | 2019.05.22 |
python 자연어 처리 튜토리얼 (0) | 2019.05.21 |