TensorFlow installation instructions (via Anaconda and VirtualEnv) ------------------------------------------------------------------ Author: D. Nieto (d.nieto@ucm.es) Valid for: Linux, OSX Estimated completion time: <10 min (if everything works out of the box ;) ) 1.- The recommended framework for the hands-on session is Anaconda, *Python 3.6 version*. Its installation is fairly simple and instructions can be found here: https://www.anaconda.com/download 2.- Once Anaconda is installed, then we create a virtual environment for TensorFlow and we activate it: > conda create -n tensorflow python=3.6 > source activate tensorflow 3.- Finally, we install tensorflow (CPU version!) via pip: (tensorflow)> pip install tensorflow 4.- For the tutorial we will need the following piece of code: cnn_mnist.py: https://goo.gl/Wk9Fxk (Also available from the TensorFlow repo on GitHub).