Delete an Environment in Conda
作者:XD / 发表: 2023年7月11日 21:17 / 更新: 2023年7月11日 21:17 / 编程笔记 / 阅读量:779
Delete an Environment in Conda
conda env list # check the environment name
conda deactivate your_envronment_name # stop the environment
conda remove --name your_envronment_name --all # delete the environment