Skip to content

Commit

Permalink
Added requirements.txt for easy pip installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hvass-Labs committed Apr 6, 2017
1 parent 5e7b5bd commit 74ebeba
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
################################################################
#
# Python package requirements for the TensorFlow Tutorials:
# https://github.com/Hvass-Labs/TensorFlow-Tutorials
#
# If you are using Anaconda then you can install all required
# Python packages by running the following commands in a shell:
#
# conda create --name tf python=3
# pip install -r requirements.txt
#
# Note that you have to edit this file to select whether you
# want to install the CPU or GPU version of TensorFlow.
#
################################################################
# Basic packages used in many of the tutorials.

numpy
scipy
jupyter
matplotlib
Pillow
scikit-learn

################################################################
# TensorFlow can be installed either as CPU or GPU versions.
# You select which one to install by (un)commenting these lines.

tensorflow # CPU Version of TensorFlow.
# tensorflow-gpu # GPU version of TensorFlow.

# Builder API for TensorFlow used in many of the tutorials.
prettytensor

################################################################

0 comments on commit 74ebeba

Please sign in to comment.