Anaconda之创建、激活、退出、删除虚拟环境
创建虚拟环境
创建名为your_env_name的环境
conda create -n your_env_name # your_env_name为你的虚拟环境名
创建指定python版本的环境
conda create -n your_env_name python=2.7 # your_env_name为你的虚拟环境名
conda create -n your_env_name python=3.6 # your_env_name为你的虚拟环境名
激活(进入)虚拟环境
conda activate your_env_name # your_env_name为你的虚拟环境名
查看虚拟环境的包
conda list
退出虚拟环境
conda deactivate
安装库
conda install tensorflow=1.14 # 指定版本的tensorflow库
查看所有虚拟环境
conda info --env
conda env list
删除虚拟环境
conda remove -n your_env_name --all