Tuesday, February 14, 2017

Mac OSX Anaconda installation

Install Anaconda
https://www.continuum.io/downloads

See the installation instructions on this page
https://github.com/Hvass-Labs/TensorFlow-Tutorials

mkdir conda
cd conda
/anaconda/bin/conda create --name ./tf python=3

cat .bash_profile
...
# added by Anaconda3 4.3.0 installer
export PATH=/anaconda/bin:$PATH

source .bash_profile

ls .condarc
# if this fails then make a .condrc file
/anaconda/bin/conda config --add channels r
ls .condarc

source activate tf

conda install scikit-learn