프로그래밍/기타

[오류 해결] CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.com/pkgs/main/win-64/current_repodata.json>Elapsed:

흔한티벳여우 2022. 6. 15. 18:00
반응형

 

아나콘다 환경에서 새롭게 환경을 아래와 같이 생성하려했다.

conda create -n torch_test

근데 아래와 같은 오류를 뱉었다.

CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.com/pkgs/main/win-64/current_repodata.json>
Elapsed: -

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.

If your current network has https://www.anaconda.com blocked, please file
a support request with your network engineering team.

'https://repo.anaconda.com/pkgs/main/win-64'

 

이건 SSL을 막아놨을때 이러한 현상이 발생되는데

그냥 conda 에서 ssl 체크를 꺼버리면된다.

 

conda config --set ssl_verify no

 

반응형