separate out tensorflow install

This commit is contained in:
Jeff Wu
2019-02-19 17:48:19 -08:00
parent fc0ee6da2f
commit 825aa3d338
2 changed files with 12 additions and 2 deletions

View File

@ -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
```

View File

@ -1,3 +1,2 @@
fire>=0.1.3
tensorflow>=1.12
regex==2017.4.5