Answers for "delete conda envioement"

32

delete conda env

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
3

conda remove env

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

Python Answers by Framework

Browse Popular Code Answers by Language