python-conda

1.创建环境并使用

conda create -n xxxx 

source activate xxxx

2.添加conda-forge 源

conda config --add channels conda-forge 
conda install <package-name>

3.查看所有源

conda config --show-sources

原文地址:https://www.cnblogs.com/mirrorlake/p/8571909.html