반응형
아나콘다 환경에서 새롭게 환경을 아래와 같이 생성하려했다.
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
끝
반응형
'프로그래밍 > 기타' 카테고리의 다른 글
[오류해결] RuntimeError: one_hot is only applicable to index tensor. (0) | 2022.06.21 |
---|---|
[오류 해결] 관리 디버깅 도우미 'ContextSwitchDeadlock' (0) | 2022.06.16 |
[Python] 각 행 또는 열의 합 구하기 (0) | 2022.06.13 |
[오류 해결] 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (0) | 2022.06.13 |
[Pytorch] Variable 에 관하여 (0) | 2022.06.08 |