conda create 할 때에 https (SSL) 관련 에러가 나는 경우의 해결 방법.
에러 메시지.
1 2 3 4 5 6 7 8 9 | $ conda create -n py36 python=3.6 Fetching package metadata ... CondaHTTPError: HTTP None None for url <https://repo.continuum.io/pkgs/free/win-64/repodata.json.bz2> Elapsed: None An HTTP error occurred when trying to retrieve this URL. HTTP errors are often intermittent, and a simple retry will get you on your way. SSLError(SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_get_server_certificate', 'certificate verify failed')],)",),),) | cs |
원인
- 통신 에러
- SSL 접속 에러 (이 경우는 SSL 재설치로도 해결 가능)
- 방화벽 차단
해결방법
1 | conda config --set ssl_verify False | cs |
'인터넷/모바일 > 머신러닝' 카테고리의 다른 글
아나콘다 환경에서 pip install module 할 때에 utf-8 관련 에러 해결 방법. (0) | 2018.07.05 |
---|---|
fbprophet 설치할 때에 PermissionError: [WinError 32] pip-sm1260j2-build 해결 (1) | 2018.06.22 |
node js 설치 (0) | 2017.11.03 |
python : UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 1: ordinal not in range(128) 해결책. (0) | 2017.10.25 |
python3 한글 처리. (1) | 2017.09.12 |