import torch # 如果pytorch安装成功即可导入
print(torch.cuda.is_available()) # 查看CUDA是否可用
print(torch.cuda.device_count()) # 查看可用的CUDA数量
print(torch.version.cuda) # 查看CUDA的版本号
#False
#0
#None
表明安装失败!查看安装包:
conda list
发现pytorch的注释为cpu_py310h5e1f01c_1,我安装的不是cuda版本吗,好像是清华源没有pytorch对应的cuda,所以一直给你下载的都是cpu版本。
解决办法:
将conda下载源换回为默认源或者修改默认源为科大源:
conda config --remove-key channels
切换之后,清华源将不再起作用,起作用的为默认源。
使用下载命令
pip3 install torch==1.11.0+cu113 torchvision==0.12.0+cu113 torchaudio==0.11.0+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html
参考内容:pytorch无法使用cuda