Anaconda/pip 更换阿里源,助力 conda create -n 虚拟环境搭建

一、问题概述:

由于网络和时间的限制,很多的 conda 源,如 清华源,中科大源都需要想办法才能创建好虚拟环境(如本人发现的将清华源中的 https:// 改为 http:// 之后效果好很多),但这些源要么在前几次创建虚拟环境时奏效,时间长了仍然不管用。

二、解决方法

目前本人在用的 pip 源和 conda 源都是采用阿里源,速度很快,跑满带宽没问题。

三、步骤

  • ubuntu 系统:

ctrl + alt + T 打开终端(Terminal),按条复制粘贴回车下列命令:

conda config --add channels http://mirrors.aliyun.com/anaconda/pkgs/main

conda config --add channels http://mirrors.aliyun.com/anaconda/pkgs/r

conda config --add channels http://mirrors.aliyun.com/anaconda/pkgs/msys2

conda config --set show_channel_urls yes

此时你会发现在 Home 目录下,多了一个隐藏文件 (按 ctrl + H 显示) .condar 文件,双击打开,可以看到:

ssl_verify: true  # 是否信任当前网址, 有/无这个都可
channels:
  - http://mirrors.aliyun.com/anaconda/pkgs/main
  - http://mirrors.aliyun.com/anaconda/pkgs/r
  - http://mirrors.aliyun.com/anaconda/pkgs/msys2
show_channel_urls: true

如果与上面的不相同,请将上面的覆盖原来的 .condar。
之后创建环境:

conda create -n python=3.x
  • windows 系统

打开 cmd 命令行:win图标键 + R,输入 cmd 回车

还可以按下该栏以复制和粘贴以下命令:

[En]

Also press the bar to copy and paste the following commands:

conda config --add channels http://mirrors.aliyun.com/anaconda/pkgs/main

conda config --add channels http://mirrors.aliyun.com/anaconda/pkgs/r

conda config --add channels http://mirrors.aliyun.com/anaconda/pkgs/msys2

conda config --set show_channel_urls yes

此时你会发现在 C:\Users\用户名 目录下,多了一个隐藏文件 (按 ctrl + H 显示) .condar 文件,双击打开

channels:
  - http://mirrors.aliyun.com/anaconda/pkgs/main
  - http://mirrors.aliyun.com/anaconda/pkgs/r
  - http://mirrors.aliyun.com/anaconda/pkgs/msys2
show_channel_urls: true

如果没有,只需更换原来的。

[En]

If not, just replace the original one.

之后创建环境:

conda create -n python=3.x

四、pip 更换阿里源

Original: https://www.cnblogs.com/helong-123/p/16189402.html
Author: 萌褚
Title: Anaconda/pip 更换阿里源,助力 conda create -n 虚拟环境搭建

原创文章受到原创版权保护。转载请注明出处:https://www.johngo689.com/523760/

转载文章受原作者版权保护。转载请注明原作者出处!

(0)

大家都在看

亲爱的 Coder【最近整理,可免费获取】👉 最新必读书单  | 👏 面试题下载  | 🌎 免费的AI知识星球