创建虚拟环境切换环境列出环境删除环境 创建虚拟环境 ```bash创建虚拟环境conda create -n python=3.7切换环境conda activate 列出环境conda env list 删除环境conda remove -n —all ```