Failed to remove anaconda from Ubuntu 16.04

I am trying to uninstall Ananconda from my Ubuntu 16.04 LTS machine and tried this post.

I have executed the following commands

conda install anaconda-clean
anaconda-clean
rm -rf ~/anaconda

      

Everything is released without errors / warnings. If fact, when I run anaconda-clean

it says so and therefore the packages have been removed. However, I can still open the anaconda navigator and everything seems to be working fine. What am I missing?

+3


source to share


1 answer


conda install anaconda-clean
anaconda-clean --yes
rm -rf ~/anacondax (x - version)

      



This will uninstall anaconda

+1


source







All Articles