Attempts to solve the Pommerman challenge
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