From 77313e51ee60e526aea87a58783d5d459d753f72 Mon Sep 17 00:00:00 2001 From: techmore Date: Mon, 16 Oct 2023 13:17:24 -0400 Subject: [PATCH 1/3] Update README.md This add brew install instructions for ffmpeg otherwise it will setup initially but fail after sometimes with error : RuntimeError: Program 'ffmpeg' is not found; perhaps install ffmpeg using 'apt-get install ffmpeg'. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d88ee0fb1..bcf9cc84a 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,9 @@ 3. Install dependencies: ```pip install -r requirements.txt``` It may be necessary in some cases to separately install the SDL libraries. -4. Run: +4. Install ffmpeg on Apple +```brew install ffmpeg``` +5. Run: ```python run_pretrained_interactive.py``` By default the game with terminate after 32K steps, or ~1 hour. You can increase this by adjusting the `ep_length` variable, but it will also use more memory. From a4b12fc6639cc18e513e2c4152dd6bcf9051b8fb Mon Sep 17 00:00:00 2001 From: techmore Date: Tue, 17 Oct 2023 11:38:50 -0400 Subject: [PATCH 2/3] Update to include windows Mac and linux README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bcf9cc84a..9faaf8175 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,10 @@ 3. Install dependencies: ```pip install -r requirements.txt``` It may be necessary in some cases to separately install the SDL libraries. -4. Install ffmpeg on Apple -```brew install ffmpeg``` +4. Install ffmpeg on Windows, Mac and Linux +Windows installer found here +```brew install ffmpeg -y``` +```sudo apt-get install ffmpeg -y``` 5. Run: ```python run_pretrained_interactive.py``` From 5d35216eda7ae39ce6b4ab5875651c2fd14974b2 Mon Sep 17 00:00:00 2001 From: techmore Date: Tue, 17 Oct 2023 11:42:00 -0400 Subject: [PATCH 3/3] Update README.md Formatting --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9faaf8175..ef575ec89 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,11 @@ ```pip install -r requirements.txt``` It may be necessary in some cases to separately install the SDL libraries. 4. Install ffmpeg on Windows, Mac and Linux -Windows installer found here -```brew install ffmpeg -y``` -```sudo apt-get install ffmpeg -y``` +
Windows installer found here +
Mac instructions +
```brew install ffmpeg -y``` +
Debian based instructions +
```sudo apt-get install ffmpeg -y``` 5. Run: ```python run_pretrained_interactive.py```