$ conda create -n py3k python=3 anaconda
It will install host of packages and once it is done, you are ready to work with Python 3. To use Python 3, on the terminal type
$ # To activate this environment, use: $ source activate py3k
And you are ready to have fun with Python 3.
If you want to use your original Python 2.7, type
$ # To deactivate an active environment, use:
$ source deactivate