anaconda 添加环境到指定目录

 

 

 

 

 

conda create --prefix=D:\python36\py36 python=3.6

添加环境到指定目录,

原因,默认目录不太灵活,长期使用,容易占满该分区硬盘

 

激活指定环境

activate D:\python36\py36

 

修改pip源和conda源

linux

修改~/.pip/pip.conf,修改index-url至相应源

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

windows

修改c:\users\xxx\pip\pip.ini,修改index-url至相应源

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

 

conda源修改

conda是一款好用的用于管理python虚拟环境的工具,可以有效的确保python模块库一致性(本人目前只用到的功能),而用conda install模块时(类似于pip),国内可能会导致速度慢或者被墙的情况,因此和pip类似,修改conda源至国内可解决此问题。
运行以下命令:

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

或者直接修改.condarc文件

channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - defaults
show_channel_urls: true

.condarc文件路径

windows     c:\users\xxx
linux       ~/.condarc

可用源

清华
https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
中科大
http://mirrors.ustc.edu.cn/anaconda/pkgs/free/

 

 

你可能感兴趣的:(anaconda)