下载10.1cuda的指令
时间: 2023-11-05 19:05:54 浏览: 61
您可以使用以下指令下载CUDA 10.1:
```
wget https://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.243_418.87.00_linux.run
```
然后运行以下命令以安装CUDA:
```
sudo sh cuda_10.1.243_418.87.00_linux.run
```
请注意,您需要具有管理员权限才能安装CUDA。
相关问题
下载cuda10.1对应的pytorch1.7.1指令
您可以使用以下指令下载cuda10.1对应的pytorch1.7.1:
pip install torch==1.7.1+cu101 -f https://download.pytorch.org/whl/cu101/torch_stable.html
PyTorch 1.7.1 的可以安装cuda10.1的指令吗
可以安装,PyTorch 1.7.1 官方建议使用 CUDA 10.1 版本,可以通过以下命令安装:
```
pip install torch==1.7.1+cu101 torchvision==0.8.2+cu101 torchaudio==0.7.2 -f https://download.pytorch.org/whl/cu101/torch_stable.html
```
这条命令将会安装 PyTorch 1.7.1、torchvision 0.8.2 和 torchaudio 0.7.2 版本,并使用 CUDA 10.1 进行编译。
需要注意的是,如果你使用 CUDA 10.1 版本,你需要安装相应版本的 cuDNN 库,并且你的 NVIDIA 驱动程序版本需要与 CUDA 10.1 版本匹配。你可以在 NVIDIA 官网上查找相应版本的 cuDNN 库和驱动程序,并进行安装。
阅读全文