$> conda create --name three python=3.5.1 scipy numpy pandas jupyter
three
is name of the environment I'm making
after all the installs occur, run
source activate three
and then if you want to deactivate, run source deactivate
Within the activated environment, run jupyter notebook
to open up a Jupyter notebook.