赞
踩
https://download.pytorch.org/whl/torch_stable.html
当然也可以在官网Previous PyTorch Versions | PyTorch
直接选择
- # CUDA 11.1
- pip install torch==1.9.1+cu111 torchvision==0.10.1+cu111 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
- import torch
-
- print(torch.cuda.is_available()) # cuda是否可用
-
- print(torch.cuda.current_device()) # 返回当前设备索引
-
- print(torch.cuda.device_count()) # 返回GPU的数量
-
- print(torch.cuda.get_device_name(0))
答案是肯定的呀。请看输出结果如下。
啦啦啦啦,我是聪明的小行家。。。。。。。。
补充:
如果已安装了非gpu版本的torch需要先卸载,在卸载的时候先卸载torch,再卸载torchvision
如果没有卸载torchvision就会再安装新版本的torch时报错,提示不匹配,所以一定要卸载干净,再安装新版本的。
如果在镜像网站上下载的
torch-1.9.1+cu111-cp38-cp38-win_amd64.whl
然后再安装
torchvision-0.10.1+cu111-cp38-cp38-win_amd64.whl
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。