Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 429 Bytes

create_delete_env.md

File metadata and controls

25 lines (18 loc) · 429 Bytes
  1. create env
conda create --name env_xxx_py35 python=3.5
  1. delete env
conda env remove --name myenv
  1. clone env
conda create --name <env_name> --clone base
  1. set conda source
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