Reference pages:
Http://continuum.io/blog/anaconda-python-3
Http://conda.pydata.org/docs/intro.html#creating-python-3-4-or-python-2-6-environments
Download page:
Http://continuum.io/downloads
Operating environment: Mac OS X 10.10.1
A. Download: Anaconda download from the official page
1. Installing the DMG installation package
2. The default environment is 2.7
Two. Other environment switches
e.g installing Python 3.4
1. Open Terminal input:
Conda create-n py34 python=3.4 Anaconda
2. Click y after the prompt
3. Open Pycharm, open preference-project---Project Interpreter-->add Local (click on the gear on the right)-input/users/yinjiewang/ Anaconda/envs/py34
Three. Test code
Name = input ("pleaseEnter your name:")print ("thename of your Enteredwas", name)
This code will be an error when entering characters in the Python 2.7.8. But in Python 3.4, you can run
(original) Anaconda installation and version switching in Pycharm