WARNING: Ignoring invalid distribution -ycuda (d:\program files\python38\lib\site-packages) WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', timeout('_ssl.c:1091: The handshake operation timed out'))': /simple/torch/ WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', timeout('_ssl.c:1091: The handshake operation timed out'))': /simple/torch/
时间: 2023-07-03 13:09:56 浏览: 181
为python3.8.1安装pyqt5时出现的问题
5星 · 资源好评率100%
这个警告信息表示在安装torch库时,连接到代理服务器出现了问题。你可以尝试使用以下命令来安装torch库,其中`-i`参数指定了使用清华大学的镜像源,可以加快下载速度:
```
pip install torch -i https://pypi.tuna.tsinghua.edu.cn/simple
```
如果还是出现连接问题,可以考虑更换代理服务器或者直接连接互联网进行安装。
阅读全文