Skip to content Skip to sidebar Skip to footer

Cleaning Out All Other Installed Pythons On Os X

For god's sake I'm going crazy. I'm on OS X mavericks. It seems that I installed a lot of pythons (Anaconda, EDA[something like that] ... ) and I just installed the one from Macpor

Solution 1:

Assuming, you want to use the Anaconda Python for scientific work...do the following:

  1. create a file called .bashrc in your home directory (~)
  2. add the following to it: export PATH=~/anaconda/bin:$PATH
  3. close out all open terminals

Now when you open a fresh terminal, python should bring up the Anaconda Python.

Post a Comment for "Cleaning Out All Other Installed Pythons On Os X"