Skip to content

Commit

Permalink
separate out tensorflow install
Browse files Browse the repository at this point in the history
  • Loading branch information
WuTheFWasThat committed Feb 20, 2019
1 parent fc0ee6d commit 825aa3d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,18 @@ Download the model data
sh download_model.sh 117M
```

Install python packages:
The remaining steps can optionally be done in a virtual environment using tools such as `virtualenv` or `conda`.

Install tensorflow 1.12 (with GPU support, if you have a GPU and want everything to run faster)
```
pip3 install tensorflow==1.12.0
```
or
```
pip3 install tensorflow-gpu==1.12.0
```

Install other python packages:
```
pip3 install -r requirements.txt
```
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
fire>=0.1.3
tensorflow>=1.12
regex==2017.4.5

0 comments on commit 825aa3d

Please sign in to comment.