linux下conda创建虚拟环境

1、查看conda当前使用源

conda config --show-sources

2、添加指定源

由于Anaconda.org的服务器在国外,下载速度慢,而且可能报错CondaHTTPError: HTTP 404 NOT FOUND for url ,清华镜像源有Anaconda仓库的镜像,将其加入conda源配置

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

5月4-16号由于授权问题,上述配置停止使用了,需要删除之前配置并添加新的配置

conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

conda config --add channels https://repo.continuum.io/pkgs/free/ 
conda config --add channels https://repo.continuum.io/pkgs/main/ 
conda config --set show_channel_urls yes

3、创建独立python环境

your_name为虚拟环境名称,python=3.6(2.7、3.7等)指定使用的python版本

conda create -n your_name python=3.6

4、激活环境,进入虚拟环境安装需要的包

source activate your_name

5、关闭虚拟环境

source deactivate

 

 

你可能感兴趣的:(linux下conda创建虚拟环境)