티스토리 뷰
Remove by using anaconda-clean:
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 related paths:
To uninstall Anaconda open a terminal window and remove the entire anaconda install directory: rm -rf ~/anaconda
. You may also edit ~/.bash_profile
and remove the anaconda directory from your PATH
environment variable, and remove the hidden .condarc
file and .conda
and .continuum
directories which may have been created in the home directory with rm -rf ~/.condarc ~/.conda ~/.continuum
Referred link:
https://stackoverflow.com/questions/22585235/python-anaconda-how-to-safely-uninstall
댓글