anaconda show anaconda/tensorflow

conda create -n myenv python=3.6

1 基础命令

1.1 create an environment

conda create --name myenv [python=3.6]

1.2 Cloning an environment

conda create --name myclone --clone myenv

1.3 Activating an environment

conda activate myenv

1.4 Deactivating an environment

conda deactivate

1.5 Determining your current environment

conda info --envs

1.6 Viewing a list of your environments

conda env list

1.7 Viewing a list of the packages in an environment

conda list -n myenv

国内源

.condarc
https://www.cnblogs.com/lvchengda/p/12533040.html
conda channels config

图片alt

图片alt

参考: