forked from gtwell/TensorFlow-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements.txt
42 lines (34 loc) · 1.26 KB
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
################################################################
#
# 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
################################################################
# The tutorial on Reinforcement Learning uses OpenAI Gym.
# Uncomment this line if you want to run that tutorial.
# gym[atari]
################################################################