Answers for "how to delete conda env"

C++
15

anaconda remove environment

conda env remove -n ENV_NAME
Posted by: Guest on May-17-2020
9

delete conda from machine

conda install anaconda-clean   # install the package anaconda clean
anaconda-clean --yes           # clean all anaconda related files and directories 
rm -rf ~/anaconda3             # removes the entire anaconda directory

rm -rf ~/.anaconda_backup       # anaconda clean creates a back_up of files/dirs, remove it 
                                # (conda list; cmd shouldn't respond after the clean up)
Posted by: Guest on June-19-2020
4

How do I set Conda to activate the base environment by default?

conda config --set auto_activate_base true
Posted by: Guest on August-11-2020
2

remove environment conda

conda env remove -n ENV_NAME
Posted by: Guest on August-05-2021
0

conda remove env

conda env remove --name <name>
Posted by: Guest on November-28-2020
2

conda remove environment by path

# remove environments by path
conda remove -p </filepath/myenvironment> --all
Posted by: Guest on November-16-2020

Browse Popular Code Answers by Language