Skip to content

groupw66/tensorflow-101

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages