Create a python 3 session under anaconda
Here are some explanations to create a python 3 environment under Anaconda.
a) create an environment for python 3 :
conda create -n python3 python=3.4
b) switch to this environement by typing
source activate python3
c) install some libraries if needed
conda install unidecode
d) if you want to go back to python 2
source deactivate