Skip to content

Installation

From PyPI

pip install pogema

From Source (development)

git clone https://github.com/Cognitive-AI-Systems/pogema.git
cd pogema
uv sync --extra test --extra dev

Dependencies

Package Version Purpose
gymnasium >= 1.2.3 Environment interface
numpy >= 2.0 Grid computations
pydantic >= 2.12.5 Configuration validation
pettingzoo >= 1.24, < 1.25 Multi-agent API

Optional Dependencies

# For running tests
pip install pogema[test]

# For development (linting)
pip install pogema[dev]

Verify Installation

import pogema
print(pogema.__version__)