如何使用pip安装torch 1.8.0+cu111
时间: 2024-06-09 11:09:20 浏览: 709
Linux系统安装pytorch和torchvision:torch1.8.0+torchvision0.9.0
你可以使用以下命令在命令行中安装torch 1.8.0 cu111:
```
pip install torch==1.8.0+cu111 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
这将安装torch 1.8.0版本,使用的CUDA版本为cu111。请确保你的计算机上已经安装了适合的CUDA驱动程序和CUDA工具包。
阅读全文