Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 554 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 554 Bytes

Introduction to Tensorflow

Installation

  1. Install Anaconda / Miniconda and make sure that the conda execuatbles are in your PATH.
  2. (Optional) create a virtual environment and activate it as follows:
$ conda create -n tf101 python=3.6
$ source activate tf101
  1. Install requirements as follows:
$ pip install -r requirements.txt
  1. Run the test script as follows:
$ python tf_requirements_test.py
  1. If the script runs without an error, you are ready for the workshop.