当前位置:   article > 正文

PyTorch 安装遇见的下载超时问题_pytorch 2.3.0下载超时

pytorch 2.3.0下载超时

下载超时问题:

解决方法:修改 .condarc(conda 配置文件)、换国内源
如何找到该文件:
.condarc以点开头,一般表示 conda 应用程序的配置文件,在用户的家目录(windows:C:\users\username\,linux:/home/username/)

其默认情况下是不存在的,但当用户第一次运行 conda config命令时,将会在用户的家目录创建该文件。

Windows 下如果不存在该文件

cmd --执行conda config
可以在windows:C:\users\username\ 下找到该文件

查看源库

conda config --show-sources
  • 1

找到之后加入国内资源路径

channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/menpo/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
  - defaults
ssl_verify: true
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

保存即可

添加清华Anaconda镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  • 1
显示通道地址
conda config --set show_channel_urls yes
  • 1
设置搜索时显示通道地址
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/773402
推荐阅读
相关标签
  

闽ICP备14008679号