CUDA、pytorch、配置环境教程合集

1.CUDA卸载

参考:

【环境搭建】卸载&重新安装cuda+cudnn+anaconda+gpu版pytorch_卸载cuda-CSDN博客

【cuda】cuda安装与卸载升级_升级cuda-CSDN博客

检测代码:

https://www.zhihu.com/question/482335084

python 复制代码
import torch
print('CUDA版本:',torch.version.cuda)
print('Pytorch版本:',torch.__version__)
print('显卡是否可用:','可用' if(torch.cuda.is_available()) else '不可用')
print('显卡数量:',torch.cuda.device_count())
print('是否支持BF16数字格式:','支持' if (torch.cuda.is_bf16_supported()) else '不支持')
print('当前显卡型号:',torch.cuda.get_device_name())
print('当前显卡的CUDA算力:',torch.cuda.get_device_capability())
print('当前显卡的总显存:',torch.cuda.get_device_properties(0).total_memory/1024/1024/1024,'GB')
print('是否支持TensorCore:','支持' if (torch.cuda.get_device_properties(0).major >= 7) else '不支持')
print('当前显卡的显存使用率:',torch.cuda.memory_allocated(0)/torch.cuda.get_device_properties(0).total_memory*100,'%')

2.5070ti出现bug

参考:更新5070ti适配pytorch,解决pytorch不支持sm_120问题-陌上玉台咏新桑-陌上玉台咏新桑-哔哩哔哩视频

【5070TI启动Stable Diffusion时报pytorch capability sm_120 is not compatible ...的解决方案】_5070ti pytorch-CSDN博客

从40系显卡换5070TI后CUDA出现问题,解决方法_5070ti cuda版本-CSDN博客

【torch报错】RuntimeError: CUDA error: no kernel image is available for execution on torch解决方案_torch.cuda.deferredcudacallerror: cuda call failed-CSDN博客

出现错误(已解决)RuntimeError: CUDA error: no kernel image is available for execution on the device CUDA ker-CSDN博客

深度学习环境配置避坑-CUDA11.0+DGL1.8_dgl cuda 11.0-CSDN博客

最后的解决方案是:

CUDA12.8+pytorch2.7.0

可以向下兼容pytorch2.5.1版本的代码,成功跑通

3.相关官方网站

pytorch:

Start Locally | PyTorch

清华镜像源:

Index of /anaconda/cloud/pytorch/win-64/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror

CUDA:

CUDA Toolkit - Free Tools and Training | NVIDIA Developer

相关推荐
牛奶19 分钟前
AI辅助开发的基础概念
前端·人工智能·ai编程
东坡肘子20 分钟前
OpenClaw 不错,但我好像没有那么需要 -- 肘子的 Swift 周报 #125
人工智能·swiftui·swift
风象南8 小时前
普通人用AI加持赚到的第一个100块
人工智能·后端
牛奶8 小时前
2026年大模型怎么选?前端人实用对比
前端·人工智能·ai编程
牛奶8 小时前
前端人为什么要学AI?
前端·人工智能·ai编程
罗西的思考11 小时前
AI Agent框架探秘:拆解 OpenHands(10)--- Runtime
人工智能·算法·机器学习
冬奇Lab12 小时前
OpenClaw 源码精读(2):Channel & Routing——一条消息如何找到它的 Agent?
人工智能·开源·源码阅读
冬奇Lab12 小时前
一天一个开源项目(第38篇):Claude Code Telegram - 用 Telegram 远程用 Claude Code,随时随地聊项目
人工智能·开源·资讯
孟健13 小时前
Karpathy 用 200 行纯 Python 从零实现 GPT:代码逐行解析
python
格砸13 小时前
从入门到辞职|从ChatGPT到OpenClaw,跟上智能时代的进化
前端·人工智能·后端