下载pytorch以前版本
时间: 2023-07-29 11:09:46 浏览: 110
如何安装pytorch
您可以使用以下命令下载PyTorch GPU版本:
```
pip install torch torchvision torchaudio -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
其中,`cu111` 表示 CUDA 11.1 版本,如果您使用的是其他版本的 CUDA,可以根据需要进行修改。另外,如果您需要指定 PyTorch 的版本号,可以在命令中加上 `-v` 参数,例如:
```
pip install torch==1.9.0+cu111 torchvision==0.10.0+cu111 torchaudio==0.9.0 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
这样就可以下载 PyTorch 1.9.0 版本的 GPU 版本了。
阅读全文