How to install 2 Anacondas (Python 2 and 3) on Mac OS
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 3 Looping
--
Chapters
00:00 How To Install 2 Anacondas (Python 2 And 3) On Mac Os
00:38 Accepted Answer Score 332
01:28 Answer 2 Score 32
02:24 Answer 3 Score 4
03:02 Thank you
--
Full question
https://stackoverflow.com/questions/2440...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #macos #anaconda
#avk47
ACCEPTED ANSWER
Score 332
There is no need to install Anaconda again. Conda, the package manager for Anaconda, fully supports separated environments. The easiest way to create an environment for Python 2.7 is to do
conda create -n python2 python=2.7 anaconda
This will create an environment named python2 that contains the Python 2.7 version of Anaconda. You can activate this environment with
source activate python2
This will put that environment (typically ~/anaconda/envs/python2) in front in your PATH, so that when you type python at the terminal it will load the Python from that environment. 
If you don't want all of Anaconda, you can replace anaconda in the command above with whatever packages you want. You can use conda to install packages in that environment later, either by using the -n python2 flag to conda, or by activating the environment. 
ANSWER 2
Score 32
Edit!: Please be sure that you should have both Python installed on your computer.
Maybe my answer is late for you but I can help someone who has the same problem!
You don't have to download both Anaconda. 
If you are using Spyder and Jupyter in Anaconda environmen and,
If you have already Anaconda 2 type in Terminal:
    python3 -m pip install ipykernel
    python3 -m ipykernel install --user
If you have already Anaconda 3 then type in terminal:
    python2 -m pip install ipykernel
    python2 -m ipykernel install --user
Then before use Spyder you can choose Python environment like below!
Sometimes only you can see root and your new Python environment, so root is your first anaconda environment!

Also this is Jupyter. You can choose python version like this!

I hope it will help.
ANSWER 3
Score 4
This may be helpful if you have more than one python versions installed and dont know how to tell your ide's to use a specific version.
- Install 
anaconda. Latest version can be found here - Open the navigator by typing 
anaconda-navigatorin terminal - Open environments. Click on 
createand then choose your python version in that. - Now new environment will be created for your python version and you can install the IDE's(which are listed there) just by clicking 
installin that. - Launch the IDE in your environment so that that IDE will use the specified version for that environment.
 
Hope it helps!!