Skip to content

Latest commit

 

History

History
46 lines (36 loc) · 1.31 KB

README.md

File metadata and controls

46 lines (36 loc) · 1.31 KB

tensorflow_examples

Trying out tensorflow and solving example problems.

Installation Guidelines

For MacOS (El Captain)

The following installation steps are cherry-picked from TensorFlow Installation Guide:

  1. Check if you are using system python
  $ which python
  1. If output is /usr/local/bin/python then skip to step 4.
  2. Install a python at user level using Homebrew:
  $ brew install python
  $ brew linkapps python
  $ which python
  /usr/local/bin/python
  1. Install or update pip using easy_install:
  $ easy_install pip
  $ pip install --upgrade pip
  1. Install TensorFlow:
  $ pip install tensorflow
  $ pip install tensorflow-gpu # Optional
  1. Test the installation by loading tensorflow in a python console:
  $ python
  >>> import tensorflow as tf

Resources to explore

  1. TensorFlow tutorials
  2. Learning TensorFlow
  3. TF Learn (previously SkFlow)