Diff of /setup.sh [000000] .. [e95d78]

Switch to unified view

a b/setup.sh
1
#!/bin/bash
2
3
if [ -z "$TF" ]
4
then
5
    TF=tensorflow
6
else
7
    TF=tensorflow-gpu
8
fi
9
10
11
pip install -r requirements.txt
12
pip install --upgrade $TF==1.8.0
13