This is the Git repo with the code and slides from the O'Reilly AI Conference NY for the sessions "Building Game bots using OpenAI's gym and Universe".
- Python 2.7 or 3.5
- Golang
- six (for py2/3 compatibility)
- TensorFlow
- tmux (the start script opens up a tmux session with multiple windows)
- htop (shown in one of the tmux windows)
- gym
- atari-py
- libjpeg-turbo (
brew install libjpeg-turbo
) - universe
- opencv-python
- numpy
- scipy
The following are required for the universe-starter-agent demo.
conda create --name universe-starter-agent python=2.7
source activate universe-starter-agent
brew install tmux htop cmake golang libjpeg-turbo # On Linux use sudo apt-get install -y tmux htop cmake golang libjpeg-dev
pip install "gym[atari]"
pip install universe
pip install six
pip install tensorflow
conda install -y -c https://conda.binstar.org/menpo opencv3
conda install -y numpy
conda install -y scipy