cuda11.3对应的torch安装指令
时间: 2023-09-20 17:11:15 浏览: 200
torch-1.14.0+cuda11.8+sm-90+deepspeed
5星 · 资源好评率100%
安装CUDA 11.3对应的torch可以使用以下指令:
```
pip install torch==1.9.0+cu111 -f https://download.pytorch.org/whl/cu111/torch_stable.html
```
其中,cu111表示CUDA版本为11.1,如果需要安装其他版本的CUDA对应的torch,可以替换cu111为对应的版本号,比如cu102表示CUDA版本为10.2。
阅读全文