반응형
pip로 설치하다보면 아래와 같은 에러가 날 때가 있다.
필자의 경우는 회사 컴퓨터로 하다보니 ssl 오류가 난다.
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:1122)'))': /whl/torch_stable.html
해결방법은 아래와 같다.
pip --trusted-host url --trusted-host url.fileserver install pytorch
예)
pip --trusted-host pypi.org --trusted-host files.pythonhosted.org install 설치프로그램
반응형
'프로그래밍 > 기타' 카테고리의 다른 글
[오류 해결] CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.com/pkgs/main/win-64/current_repodata.json>Elapsed: (0) | 2022.06.15 |
---|---|
[Python] 각 행 또는 열의 합 구하기 (0) | 2022.06.13 |
[Pytorch] Variable 에 관하여 (0) | 2022.06.08 |
[Pytorch] Seed 고정 (0) | 2022.06.08 |
[오류 해결] OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized. (0) | 2022.06.08 |