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 回车
同样按条复制粘贴回车下列命令:
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
如果不是,替换掉原来的即可。
之后创建环境:
conda create -n python=3.x
四、pip 更换阿里源
第三篇:创建深度学习所需的虚拟环境(Windows or Linux-ubuntu16.04)~《深度学习炼丹手册-本人亲身实践踏出来的一条成长之路》-3