Error Handling

아나콘다 error 해결법 : CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://conda.anaconda.org/anaconda/linux-64/repodata.json>

고수트 2019. 5. 19. 11:32
반응형

윈도우 10에서 CondaHTTPError: HTTP 000 CONNECTION FAILED 에러 해결법

콘다를 설치 후 

$ conda update conda

 

와 같은 어떠한 인터넷과 연결된 콘다 명령어를 입력할 시에 아래와 같은 오류가 나타날 때가 있다.

CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://conda.anaconda.org/anaconda/linux-64/repodata.json>

 

위 에러에 관해 찾아보면 

openssl 이 설치가 안되어서 발생한다고 말하며, 

인터넷에 검색하면 많은 해결법들이 아래와 같이 기술되어 있다.

일단 가장 잘되는 것을 먼저 해본다. 

1. 아래와 같은 명령어를 입력하여 ssl 설정을 해제하시오

$ conda config --set ssl_verify no

 

여러가지 의견들이 있지만 모두 해결되지 못하였다.

고민끝에 찾아낸 에러가 발생하는 이유는 콘다의 최신버젼 2019.03 이 윈도우 10 현재 내 피씨와 맞지않는것 같다는 것이였다.

따라서 아래 주소에서 2018  Anaconda3-5.3.0-Windows-x86_64  버젼을 다운 받아 설치하면 해결된다.

https://repo.continuum.io/archive/.winzip/

 

Index of /archive/.winzip

The zip-files on this page each contain the (corresponding) Windows executable. To install Anaconda using the zip-files, you have to first double click the zip-file, and then double click the executable. The reason we provide this page, is because some cor

repo.continuum.io

 

 

 

반응형