Skip to main content

Gymnasium for multi-agent reinforcement learning.

Project description

pre-commit Code style: black

PettingZoo is a Python library for conducting research in multi-agent reinforcement learning, akin to a multi-agent version of Gymnasium.

The documentation website is at pettingzoo.farama.org and we have a public discord server (which we also use to coordinate development work) that you can join here: https://discord.gg/nhvKkYa6qX

Environments

PettingZoo includes the following families of environments:

  • Atari: Multi-player Atari 2600 games (cooperative, competitive and mixed sum)
  • Butterfly: Cooperative graphical games developed by us, requiring a high degree of coordination
  • Classic: Classical games including card games, board games, etc.
  • SISL: 2 cooperative environments, originally from https://github.com/sisl/MADRL

Installation

To install the base PettingZoo library: pip install pettingzoo.

This does not include dependencies for all families of environments (some environments can be problematic to install on certain systems).

To install the dependencies for one family, use pip install 'pettingzoo[atari]', or use pip install 'pettingzoo[all]' to install all dependencies.

We support and maintain PettingZoo for Python 3.9, 3.10, 3.11, 3.12, 3.13, and 3.14 on Linux and macOS. We will accept PRs related to Windows, but do not officially support it.

Note: Some Linux distributions may require manual installation of cmake, swig, or zlib1g-dev (e.g., sudo apt install cmake swig zlib1g-dev)

Getting started

For an introduction to PettingZoo, see Basic Usage. To create a new environment, see our Environment Creation Tutorial and Custom Environment Examples. For examples of training RL models using PettingZoo see our tutorials:

API

PettingZoo model environments as Agent Environment Cycle (AEC) games, in order to be able to cleanly support all types of multi-agent RL environments under one API and to minimize the potential for certain classes of common bugs.

Using environments in PettingZoo is very similar to Gymnasium, i.e. you initialize an environment via:

from pettingzoo.butterfly import pistonball_v6
env = pistonball_v6.env()

Environments can be interacted with in a manner very similar to Gymnasium:

env.reset()
for agent in env.agent_iter():
    observation, reward, termination, truncation, info = env.last()
    action = None if termination or truncation else env.action_space(agent).sample()  # this is where you would insert your policy
    env.step(action)

For the complete API documentation, please see https://pettingzoo.farama.org/api/aec/

Parallel API

In certain environments, it's a valid to assume that agents take their actions at the same time. For these games, we offer a secondary API to allow for parallel actions, documented at https://pettingzoo.farama.org/api/parallel/

SuperSuit

SuperSuit is a library that includes all commonly used wrappers in RL (frame stacking, observation, normalization, etc.) for PettingZoo and Gymnasium environments with a nice API. We developed it in lieu of wrappers built into PettingZoo. https://github.com/Farama-Foundation/SuperSuit

Environment Versioning

PettingZoo keeps strict versioning for reproducibility reasons. All environments end in a suffix like "_v0". When changes are made to environments that might impact learning results, the number is increased by one to prevent potential confusion.

Citation

To cite this project in publication, please use

@article{terry2021pettingzoo,
  title={Pettingzoo: Gym for multi-agent reinforcement learning},
  author={Terry, J and Black, Benjamin and Grammel, Nathaniel and Jayakumar, Mario and Hari, Ananth and Sullivan, Ryan and Santos, Luis S and Dieffendahl, Clemens and Horsch, Caroline and Perez-Vicente, Rodrigo and others},
  journal={Advances in Neural Information Processing Systems},
  volume={34},
  pages={15032--15043},
  year={2021}
}

Project Maintainers

  • Project Manager: Travis Virgil - travis@farama.org
  • Maintainer: Albert Han - yjhan96@gmail.com.
  • Maintenance for this project is also contributed by the broader Farama team: farama.org/team.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pettingzoo-1.26.0.tar.gz (695.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pettingzoo-1.26.0-py3-none-any.whl (805.5 kB view details)

Uploaded Python 3

File details

Details for the file pettingzoo-1.26.0.tar.gz.

File metadata

  • Download URL: pettingzoo-1.26.0.tar.gz
  • Upload date:
  • Size: 695.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pettingzoo-1.26.0.tar.gz
Algorithm Hash digest
SHA256 337122a0e1484adcd01e039a620a4cacad894621db308b709148a5af736fe9c2
MD5 cb2294708b2bc0c89eb03f2c1ebf762b
BLAKE2b-256 70587aed12383f317a316bd516a2f45baffd1d292baad4d9046d465d92b7ee9b

See more details on using hashes here.

File details

Details for the file pettingzoo-1.26.0-py3-none-any.whl.

File metadata

  • Download URL: pettingzoo-1.26.0-py3-none-any.whl
  • Upload date:
  • Size: 805.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pettingzoo-1.26.0-py3-none-any.whl
Algorithm Hash digest
SHA256 02108cb4746fcad1e776d6bf8635bc1c7fab4ebf10f213a1c3253765956e8981
MD5 baa6bdbc24e3045b6a6e5aa45636a1f2
BLAKE2b-256 1e334b384df6d7c53147f74e1fe0816ea98900f3c4fe5bc56ae449858a0da858

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page