Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lewtun/pommerman
Attempts to solve the Pommerman challenge
https://github.com/lewtun/pommerman
Last synced: 23 days ago
JSON representation
Attempts to solve the Pommerman challenge
- Host: GitHub
- URL: https://github.com/lewtun/pommerman
- Owner: lewtun
- Created: 2019-05-08T16:25:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-29T12:33:28.000Z (over 5 years ago)
- Last Synced: 2024-10-23T04:29:34.308Z (29 days ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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](https://brew.sh/)
```bash
brew install python3
```
which also installs `pip`. Next, install `virtualenv`
```bash
pip install virtualenv
```
and fire up a python virtual environment as follows
```bash
virtualenv -p python env
```
Finally, activate the environment
```bash
source env/bin/activate
```
and install the required libraries:
```bash
# for running without GPU
pip install -r ./requirements-cpu.txt
# for running with GPU
pip install -r ./requirements-gpu.txt
```