当前位置: 首页 > news >正文

纯小白安装pytorch(快速上手)

1.首先进入你的虚拟环境(不进入也没关系)

在anaconda prompt中打开,输入activate 虚拟环境

2.查看自己的conda源

conda config --show channels

在这里插入图片描述

3.清空自己的conda源

conda config --remove-key channels

4.添加源

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ 
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
conda config --set show_channel_urls yes

5.去Pytorch官网下载对应的cuda版本的pytorch

conda install pytorch==1.8.1 torchvision==0.9.1 torchaudio==0.8.1 cudatoolkit=11.3

我的cuda版本是11.6(使用nvidia-smi),我选择比11.6版本低一些的带cuda版本的pytorch

6.如果遇到如下问题的解决办法

问题一

 CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://repo.anaconda.com/pkgs/main/win-64/mkl-2023.1.0-h6b88ed4_463 58.conda> Elapsed: -  An HTTP error occurred when trying to retrieve this URL. HTTP errors are often intermittent, and a simple retry will get you on your way.

解决办法

首先检查自己的网是否是通的

ping www.baidu.com

通的话就不用管,不通就看一下如何修复(本人没有遇到此问题)

检查防火墙,然后关闭防火墙

# 在管理员的身份运行cmd窗口
netsh advfirewall set allprofiles state off

如果关闭防火墙还不行,则把ssl证书给关闭

1.首先在anaconda prompt命令窗口中查看自己的ssl证书

conda config --show|grep ssl*

2.然后关闭ssl

conda config --set ssl_verify no

3.想开启的话命令就是

conda config --set ssl_verify yes

以上就应该能解决报错的问题了


http://www.mrgr.cn/news/28385.html

相关文章:

  • C#界面设计
  • 从 Rust 官方文档理解 Ownership
  • 【JAVA】Java基础—面向对象编程:继承—重写父类方法
  • tauri开发中,使用node将png图片转成苹果的icns图标格式,解决tauri icon生成的mac图标过大问题
  • 搜维尔科技:Manus VR数据手套集成,遥操作五指灵巧手解决方案
  • rust智能指针
  • 3.4.3 __ipipe_init_early之初始化root domain
  • 【全网最详细】LSS代码与理论解读(系列文章导读)
  • 第二百三十四节 JPA教程 - JPA ID表生成器示例
  • 谷歌在在线展示广告技术上的垄断,Meta无法有效竞争
  • Linux命令:文本处理工具sed详解
  • Linux whereis和which的区别
  • Vue2源码解读
  • 启动windows更新/停止windows更新,在配置更新中关闭自动更新的方法
  • 深入了解字符函数和字符串函数
  • 深度学习之微积分预备知识点
  • 【C++】模板进阶:深入解析模板特化
  • 类和对象补充
  • Linux常用命令以及操作技巧
  • 智能体趋势:未来科技的核心驱动力
  • 微信客户量太多难维护?三招提升你的回复效率!
  • 双三次插值及MATLAB实现
  • JavaSE阶段总结
  • C++初阶:STL详解(三)——vector的介绍和使用
  • OpenJudge | 八皇后问题
  • 嵌入式C语言详解与实现