当前位置:   article > 正文

pytorch环境配置2060 cuda11.7,cudnn8.7_英伟达2060安装torch

英伟达2060安装torch

pytorch环境配置

前言
我的显卡 GeForce RTX 2060

安装cuda

cuda_11.7.0_516.01_windows 配合cudnn-windows-x86_64-8.7.0.84_cuda11-archive
下载链接我懒得找了,需要的根据我给的版本号找吧

下载好之后
cuda直接管理员身份安装就好,这里不展示图片了
cudnn要解压
在这里插入图片描述
复制上图所有文件
粘贴到C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.7这个目录下
在这里插入图片描述
cuda就安装完成了

检验cuda

win+r 输入cmd打开命令行
输入nvcc -V
在这里插入图片描述

安装conda

其实这里有很多要注意的地方,首先我要说明,我将文件放到C盘主要是我的C盘足够大,有足够的空间存放,任性

但是这样放会有一个缺点,那就是要给C盘文件夹权限

如果想在C盘以外的盘安装conda,可以跳过给权限这一步

给权限

右键要安装的文件夹,找到安全
在这里插入图片描述
点击更改
在这里插入图片描述
顺次点击
在这里插入图片描述
确定
在这里插入图片描述
根据需要,点编辑,给指定用户完全控制权限
在这里插入图片描述

安装conda

下载最新conda

https://www.anaconda.com/products/distribution
  • 1

在这里插入图片描述
下载后安装,注意管理员身份运行
在这里插入图片描述
改成自己安装的目录,安装就行

换源,更改conda包以及环境目录

在这里插入图片描述
点开.condarc文件,记事本打开
全选,粘贴以下内容

channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
  - defaults
show_channel_urls: true

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

以下是我的配置

channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
  - defaults
show_channel_urls: true
envs_dirs:
  - C://software//anaconda3//dir//envs
pkgs_dirs:
  - C://software//anaconda3//dir//pkgs


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

其中
可以直接看到上面是清华源,
envs_dirs是你的环境存放目录,
pkgs_dirs是你的包存放目录,
修改你的环境以及包存放目录,注意双斜杠!

修改jupyter目录

win+r输入cmd打开命令行
输入activate激活conda
在这里插入图片描述

输入jupyter notebook --generate-config
找到输出的地址
在这里插入图片描述
在这里插入图片描述
第一个文件,有编译器的就编译器打开,没有就记事本打开在这里插入图片描述

ctrl+f 搜索c.NotebookApp.notebook_dir
找到上面的
删除#,添加你要存放的目录地址

注意,这里地址应该是双斜杠*
在这里插入图片描述
如果用了单斜杠,打开jupyter的时候会提示
在这里插入图片描述

保存退出

右键jupyter快捷方式
在这里插入图片描述

在这里插入图片描述
删除后面的 “%USERPROFILE%/”
在这里插入图片描述

创建环境

命令行输入

conda create -n py37 python

  • 1
  • 2

根据提示按y
这里的py37是环境名,可以根据自己需要更改
我这里就不演示了

安装pytorch

在py37环境下
输入命令

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

等安装就行

如果结束提示WARNING: There was an error checking the latest version of pip.
可以升级pip

pip install --upgrade pip
  • 1

添加jupyter内核py37

在py37环境下运行

conda install -c anaconda ipykernel
  • 1
python -m ipykernel install --user --name=py37
  • 1

启动jupyter,点开new
在这里插入图片描述

测试pytorch

输入以下命令

import torch
torch.cuda.is_available()
torch.cuda.current_device()
torch.cuda.device(0)
torch.cuda.device_count()
torch.cuda.get_device_name(0)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述
结束!

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号