Conda操作命令
-
conda remove -n your_env_name --all
-
conda create -n your_env_name pytohn==3.6
-
conda deactivate
-
source activate your_env_name
-
conda info –-e
-
conda config --set auto_activate_base false
-
编辑 ~.bashrc
只要在此文件末尾加一行就搞定
conda activate your_envs # "your_envs"就是你的环境
-
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
conda config --set show_channel_urls yes