Shell/Bash: delete conda from machine Example
Shell/Bash Example: This is the "delete conda from machine" Example. compiled from many sources on the internet by SimpleTutorials.org
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)
remove environment conda
conda remove --name myenv --all
* Summary: This "delete conda from machine" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!