how to delete conda env code example
Example 1: conda remove environment
conda remove --name myenv --all
Example 2: delete conda from machine
conda install anaconda-clean
anaconda-clean --yes
rm -rf ~/anaconda3
rm -rf ~/.anaconda_backup
Example 3: How do I set Conda to activate the base environment by default?
conda config --set auto_activate_base true
Example 4: delete conda env
conda env remove -n ENV_NAME
Example 5: conda remove environment by path
conda remove -p </filepath/myenvironment> --all