Anaconda: How to completely uninstall Python 3.4?

I have installed both Python 2.7 and 3.4 on my Mac (using the graphical installers from http://continuum.io/downloads ). I only need to use 2.7. How can I completely uninstall 3.4? Thank.

+3


source to share


2 answers


According to this Anaconda FAQ :

How do I uninstall Anaconda? Version 1.3.1 and later

Anaconda can be removed by removing the root directory (~ / anaconda by default; use the conda info command to confirm the location of the root directory). Version 1.4 and newer

OSX and Unix installations remain the same as in previous versions.

In Windows, click the "Start" button and go to the Control Panel and select "Uninstall a program" then find "Anaconda" in the list of programs




So, you'll have to search in $HOME/anaconda

and uninstall the appropriate Python installation.

+1


source


Just delete the anaconda directory. You can see which directory Python 3 is installed in by starting Python 3 and running



import sys
print(sys.prefix)

      

0


source







All Articles