Thief of Wealth
Published 2019. 5. 22. 01:16
nltk download SSL error 개발/Python
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()

해결.

profile on loading

Loading...