- 检查Anaconda版本
conda --version
- 系统安装的环境
conda info --envs
conda env list
conda info -e
- 查看当前环境安装了哪些包
conda list
- 检查更新当前conda
conda update conda
- 创建虚拟环境
conda create -n your_env_name python=x.x
- 切换虚拟环境
Linux: source activate your_env_nam
Windows: activate your_env_name
python --version //检查Python版本
- 在虚拟环境中安装额外包
conda install -n your_env_name [package]
- 关闭虚拟环境
deactivate env_name
或者`activate root`切回root环境
Linux下:source deactivate
- 删除虚拟环境
conda remove -n your_env_name --all
- 删除环境中的某个包
conda remove --name $your_env_name $package_name
- 添加Anaconda的国内镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
- 设置搜索时显示通道地址
conda config --set show_channel_urls yes
9、恢复默认镜像
conda config --remove-key channels