Setup and installation of environment for osx. Will add information for linux soon. More details on setting up anaconda can be found here: http://machinelearningmastery.com/setup-python-environment-machine-learning-deep-learning-anaconda/
wget https://repo.continuum.io/archive/$ANACONDA_NAME
bash $ANACONDA_NAME
source ~/.bash_profile
conda create --name ml python=3.6
conda install conda-build
source activate ml
(ml) computer_name/folder$
pip install jupyter
pip install scikit-learn
pip install matplotlib
pip install tflearn
pip install pillow
pip install scipy
brew install git cmake pkg-config jpeg libpng libtiff openexr eigen tbb
pip install opencv-python
TF_URL=https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.1-py3-none-any.whl
pip install --ignore-installed --upgrade $TF_URL
pip install ipykernel
python -m ipykernel install --user --name ml --display-name "Python (ml)"
jupyter notebook
Remember to set Kernel to "Python(ml)" when you open a notebook.