GitXplorerGitXplorer
l

pommerman

public
0 stars
1 forks
1 issues

Commits

List of commits on branch master.
Verified
e56bb0f7a98f3d80d51a01dcc4e092ec7fd5d0d0

Initial commit

llewtun committed 6 years ago

README

The README file for this repository.

Pommerman

What is it?

Attempts to solve the Pommerman challenge

Setup and configuration

Installation

The analysis code requires both Python 3.6.X and pip3 (Python package manager) installed. On Mac OS X, the simplest way to do this is to install python3 with homebrew

brew install python3

which also installs pip. Next, install virtualenv

pip install virtualenv

and fire up a python virtual environment as follows

virtualenv -p python env

Finally, activate the environment

source env/bin/activate

and install the required libraries:

# for running without GPU
pip install -r ./requirements-cpu.txt
# for running with GPU
pip install -r ./requirements-gpu.txt