conda常用命令汇总

conda常用命令汇总

查看当前conda版本:

conda --version

更新conda至最新版本

conda update conda

创建虚拟环境

conda create -n 虚假环境名 python=需要的python版本

激活虚拟环境

conda activate 虚拟环境名

查看虚拟环境列表

conda env list

删除虚拟环境

conda remove -n 虚拟环境名 --all

使用conda安装包

conda install 包名

使用conda卸载包

conda uninstall 包名

你可能感兴趣的:(conda,linux)