Skip to content

Commit 74ebeba

Browse files
committed
Added requirements.txt for easy pip installation.
1 parent 5e7b5bd commit 74ebeba

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

requirements.txt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
################################################################
2+
#
3+
# Python package requirements for the TensorFlow Tutorials:
4+
# https://github.com/Hvass-Labs/TensorFlow-Tutorials
5+
#
6+
# If you are using Anaconda then you can install all required
7+
# Python packages by running the following commands in a shell:
8+
#
9+
# conda create --name tf python=3
10+
# pip install -r requirements.txt
11+
#
12+
# Note that you have to edit this file to select whether you
13+
# want to install the CPU or GPU version of TensorFlow.
14+
#
15+
################################################################
16+
# Basic packages used in many of the tutorials.
17+
18+
numpy
19+
scipy
20+
jupyter
21+
matplotlib
22+
Pillow
23+
scikit-learn
24+
25+
################################################################
26+
# TensorFlow can be installed either as CPU or GPU versions.
27+
# You select which one to install by (un)commenting these lines.
28+
29+
tensorflow # CPU Version of TensorFlow.
30+
# tensorflow-gpu # GPU version of TensorFlow.
31+
32+
# Builder API for TensorFlow used in many of the tutorials.
33+
prettytensor
34+
35+
################################################################
36+

0 commit comments

Comments
 (0)