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:
- create a file called
.bashrc
in your home directory (~
) - add the following to it:
export PATH=~/anaconda/bin:$PATH
- 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"