Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 1002 Bytes

README.md

File metadata and controls

32 lines (27 loc) · 1002 Bytes

TensorFlow Tutorial

Learning by playing with http://playground.tensorflow.org/

Installation Guide

  1. Install Anaconda Python 3.x version (https://www.continuum.io/downloads)
  2. Install TensorFlow with Anaconda (https://www.tensorflow.org/install)
  3. Install matplotlib pip install --ignore-installed --upgrade matplotlib

For macOS you can run this script after install Anaconda

$ conda create -n tensorflow --yes
$ source activate tensorflow
$ yes | pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.2.0-py3-none-any.whl
$ yes | pip install --ignore-installed --upgrade matplotlib

# to test
(tensorflow) $ python
>>> import tensorflow
>>> tensorflow.__version__
<output current tensorflow version>

To deactivate environment

$ source deactivate

Problem with installation matplotlib on MacOS (it will throw you some errors mention matplotlib)

$ cd ~/.matplotlib
$ echo 'backend: TkAgg' >> matplotlibrc