torch.cuda.is_available()返回flase 问题排查

查看torch版本是否为GPU版本

判断cuda是否能用代码

import torch
print(torch.cuda.is_available())
import torch
print(torch.__version__)    //我的是CPU版本

如果不是GPU版本下载GPU版本

  • 查看cuda版本
nvcc --version


nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2022 NVIDIA Corporation
Built on Wed_Sep_21_10:41:10_Pacific_Daylight_Time_2022
Cuda compilation tools, release 11.8, V11.8.89
Build cuda_11.8.r11.8/compiler.31833905_0    //我的是11.8版本
  • 下载与cuda版本一致的pytorch
//下载pytorch 11.8版本,去pytorch官网生成11.8对应的pytorch版本

pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118

conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia    //conda虚拟环境下载命令

参考:
https://blog.csdn.net/m0_63769180/article/details/128478175

通过nvidia-smi命令查看显卡驱动版本,因为显卡驱动决定了最高支持的CUDA版本,CUDA的版本需要低于显卡驱动的版本的
在这里插入图片描述
然后通过cuda版本来确定torch版本,torch版本要小于已安装的cuda版本

在新建的conda环境中下载对应的pytorch版本

在新建的环境中使用pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118出错下载不了,但是在base环境中可以下载并且下载的还是GPU版本,能顺利运行代码。
最后使用手动下载库的方式来安装。参考 https://blog.csdn.net/Ecoboy_zhang/article/details/130116411
首先确定好要下载的torch版本,主要参考操作系统,cuda版本(cuda是GPU驱动器,虚拟环境中不需要下载)和python版本。比如我cuda版本是11.8,python是3.8。那么我需要的torch whl文件名中要有cu118和cp38的信息。

从下图红框中网址找需要的torch torchvision torchaudio

在这里插入图片描述

找到需要的torch文件

两个都可以,我选择了第二个,下载下来,这里开梯子下载快
在这里插入图片描述

放到虚拟环境中的Scripts中

我的环境名字叫zerodce_env
在这里插入图片描述

激活该环境 进入该文件夹 后pip install <文件名>

可以在pytharm中操作,也可以在dos窗口中执行
在这里插入图片描述


另外我需要torchvision,0.19.1版本不行,用不了。要用0.18.1,这里直接pip下载就行

在这里插入图片描述
在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

扮作大侠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值