Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to uninstall anaconda from Ubuntu 16.04

Tags:

I am trying to uninstall Ananconda from my Ubuntu 16.04 LTS machine.

I ran the following commands

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

Everything is getting exceuted without any error/warning. If fact, when I run anaconda-clean it is saying so and so packages have been uninstalled. However, I can still open up anaconda navigator and everything seems to be working just fine. What am I missing?

like image 866
Ananda Avatar asked May 16 '17 04:05

Ananda


1 Answers

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

Replace anaconda3 with your version of anaconda

This will uninstall anaconda

like image 80
Diwakar V Avatar answered Sep 22 '22 11:09

Diwakar V