conda下载cuda对应版本的torch用什么命令
时间: 2024-05-04 21:22:09 浏览: 91
pytorch 查看cuda 版本方式
如果你已经安装了与CUDA版本对应的CUDA Toolkit,可以使用以下命令安装对应版本的PyTorch:
```
conda install pytorch torchvision torchaudio cudatoolkit=<CUDA版本号> -c pytorch
```
其中,`<CUDA版本号>`应替换为您所安装的CUDA版本号,例如`10.1`或`11.1`等。如果您使用的是CPU版本的PyTorch,则无需指定`cudatoolkit`参数。
阅读全文