提高anconda下载速度

anaconda 安装镜像源


    在使用安装 conda 安装某些包会出现慢或安装失败问题,最有效方法是修改镜
像源为国内镜像源。
    之前都选用清华镜像源,但是2019年后已停止服务。推荐选用中科大镜像源。

先查看已经安装过的镜像源,cmd窗口执行命令: conda config --show

查看配置项 channels ,如果显示带有 tsinghua ,则说明已安装过清华镜像。

1
2
3
4
5
6
channels:
https://mirrors.tuna.tsinghua.edu.cn/tensorflow/linux/cpu/
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/free/
https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/

  

  

下一步,使用 conda config --remove channels url地址删除清华镜像,如下命令删除第一个。然后,依次删除所有镜像源

1
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/tensorflow/linux/cpu/

  

添加目前可用的中科大镜像源:

1
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/

  

并设置搜索时显示通道地址:

1
conda config --set show_channel_urls yes

  

确认是否安装镜像源成功,执行 conda config --show ,找到 channels 值为如下:

1
2
3
4
5
channels:
 
https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
 
defaults

  

更新

经过一段时间的使用,发现中科大镜像源有些库也是没有的 ┭┮﹏┭┮ ,发现豆瓣源倒是真的好用。

介绍一下豆瓣源的配置:

  1. 在C:\Users\Administrator\AppData\Roaming目录下新建文件夹pip;
  1. 在pip文件夹下新建pip.ini文件,然后在pip.ini 里输入

            [global]
            timeout = 6000
            index-url =http://pypi.douban.com/simple
            trusted-host = pypi.douban.com

亲测有效,无论是把anconda下载到D盘还是C盘都可以。有问题欢迎留言。

 

Done~

posted @   .helloWorld  阅读(1928)  评论(0编辑  收藏  举报
编辑推荐:
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 《HelloGitHub》第 106 期
· 数据库服务器 SQL Server 版本升级公告
· C#/.NET/.NET Core技术前沿周刊 | 第 23 期(2025年1.20-1.26)
点击右上角即可分享
微信分享提示