pip2 [에러 고치기] pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out. 에러 [에러 고치기] pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out. 에러 문제 상황pip로 wandb 모듈을 설치하려다 생긴 에러다. 문제 원인기본적으로 pip는 일정 시간 동안 응답이 없으면 타임아웃이 발생하는데,wandb를 다운받는 어떤 서버에서 일정 시간 동안 응답이 없어 타임아웃이 발생한 것이었다. 해결 방법pip install wandb --timeout=100 타임아웃 시간을 명시적으로 늘려서 수정 가능하다. 결과설치가 잘 되었다. 2025. 2. 25. [PyTorch/Python] conda list의 torch 버전과 pip show torch 버전이 다를 때 [PyTorch/Python] conda list의 torch 버전과 pip show torch 버전이 다를 때 pip show torch에 출력된 파이토치 버전과 conda list로 출력된 파이토치 버전이 다를 때 해결법이다. 1. 문제 상황파이토치를 설치했고, conda list 로도 출력이 되는데 no module name 'torch' 에러가 자꾸 떴다. 1.1 pip torch 버전 확인pip show torch위의 명령어로 torch 버전을 확인해보니 아래처럼 나왔다.Name: torchVersion: 2.2.1Summary: Tensors and Dynamic neural networks in Python with strong GPU accelerationHome-page: https://.. 2025. 2. 21. 이전 1 다음