Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add install instructions for Ubuntu, Mac and Windows in the README.md #50

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@
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 Windows, Mac and Linux
<br>Windows installer found <a href="https://www.gyan.dev/ffmpeg/builds/ffmpeg-git-full.7z">here</a>
<br>Mac instructions
<br>```brew install ffmpeg -y```

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I use MacPorts:
sudo port install ffmpeg

<br>Debian based instructions
<br>```sudo apt-get install ffmpeg -y```
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.
Expand Down