深度学习入门之cuda环境配置(3步解决)

Pytorch深度学习入门之cuda环境配置(3步解决)

引言

相信很多同学在开始入门深度学习时遭受配置环境的苦,笔者曾经也是,本教程也是笔记和同学摸索了挺久总结出来的。一共三步,可以解决一般的环境问题,基本配置成功,适用于10和20系列的显卡,其他系列的没测试过。镜像源已配置好,直接粘贴就能用。

安装cudatoolkit

conda install cudatoolkit=11.3 -c https://mirrors.bfsu.edu.cn/anaconda/pkgs/main/win-64/

安装cudnn

conda install cudnn=8.2 -c https://mirrors.bfsu.edu.cn/anaconda/pkgs/main/win-64/

安装torch

pip install torch1.12.1+cu113 torchvision0.13.1+cu113 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cu113

测试

import torch

torch.cuda.is_available()

你可能感兴趣的:(深度学习,深度学习,人工智能,pytorch)