We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 313ae1a commit 4dab448Copy full SHA for 4dab448
README.md
@@ -8,12 +8,18 @@ A bot that plays [tetris](https://en.wikipedia.org/wiki/Tetris) using deep reinf
8
sudo apt install libgtk2.0-dev pkg-config
9
# https://stackoverflow.com/a/14656610/5066426
10
11
-conda create --name tf37 python=3.7
+conda create --name py37tf python=3.7
12
conda install -c conda-forge opencv=4.1.0
13
conda install tensorflow-gpu keras pillow tqdm tensorboard
14
15
-conda activate tf37
+conda activate py37tf
16
```
17
+OR
18
+```bash
19
+conda create --name py37tf --file requirements.txt
20
21
+```
22
+
23
24
## How to use
25
requirements.txt
@@ -1,7 +1,6 @@
1
-tensorflow
2
-tensorboard
3
-Keras
4
-opencv-python
5
-numpy
6
-Pillow
7
-tqdm
+tensorflow-gpu
+tensorboard
+keras
+opencv=4.1.0
+pillow
+tqdm
0 commit comments