我试过conda install pytorch ...,但它甚至没有开始,给了我
("Connection broken: ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None)", ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None))我正在考虑手动下载必要的文件(即使互联网速度慢,也可以安全下载),然后将其设置为anaconda,这样就可以直接从下载的文件安装,而不是自行下载。
发布于 2022-05-24 17:55:52
这可以通过下载火炬、火炬和torchaudio等的pip轮和本地车轮的pip安装来实现。合适的火炬轮可以从这里下载。现在,您可以简单地安装下载的whl文件:
pip install file.whl这里,file.whl是下载的车轮。
https://stackoverflow.com/questions/72363762
复制相似问题