Delete Conda From Machine

[Solved] Delete Conda From Machine | Shell - Code Explorer | yomemimo.com
Question : delete conda from machine

Answered by : smoggy-scarab-5e0gmqtn1ran

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)

Source : https://stackoverflow.com/questions/22585235/python-anaconda-how-to-safely-uninstall | Last Update : Fri, 26 Jun 20

Answers related to delete conda from machine

Code Explorer Popular Question For Shell