Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Gymnasium in 30 mins

TL;DR Gymnasium is a standardized Python API for reinforcement learning environments. It gives every environment the same reset() / step() interface, so the same agent code runs against CartPole, Atari, MuJoCo, or your own custom problem without changes.

Introduction

Alternative tools

Official references

Prerequisites

Installation

Verifying installation

Core Concepts

Basic Usage

Running an episode

Inspecting spaces

Spaces in Detail

Wrappers

Vectorized Environments

Building a Custom Environment

Tutorial Notebooks

Work through the notebooks in this directory:

Getting Started with the Container

Summary

Changelog