Skip to content

Commit 4dab448

Browse files
committed
Update docs
1 parent 313ae1a commit 4dab448

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,18 @@ A bot that plays [tetris](https://en.wikipedia.org/wiki/Tetris) using deep reinf
88
sudo apt install libgtk2.0-dev pkg-config
99
# https://stackoverflow.com/a/14656610/5066426
1010

11-
conda create --name tf37 python=3.7
11+
conda create --name py37tf python=3.7
1212
conda install -c conda-forge opencv=4.1.0
1313
conda install tensorflow-gpu keras pillow tqdm tensorboard
1414

15-
conda activate tf37
15+
conda activate py37tf
1616
```
17+
OR
18+
```bash
19+
conda create --name py37tf --file requirements.txt
20+
conda activate py37tf
21+
```
22+
1723

1824
## How to use
1925

requirements.txt

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
tensorflow
2-
tensorboard
3-
Keras
4-
opencv-python
5-
numpy
6-
Pillow
7-
tqdm
1+
tensorflow-gpu
2+
tensorboard
3+
keras
4+
opencv=4.1.0
5+
pillow
6+
tqdm

0 commit comments

Comments
 (0)