mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-30 01:50:19 +00:00
38 lines
709 B
Markdown
38 lines
709 B
Markdown
---
|
|
title: Registry
|
|
---
|
|
|
|
# Registry
|
|
|
|
Gymnasium allows users to automatically load environments, pre-wrapped with several important wrappers.
|
|
Environments can also be created through python imports.
|
|
|
|
## Make
|
|
|
|
```{eval-rst}
|
|
.. autofunction:: gymnasium.make
|
|
```
|
|
|
|
## Register
|
|
|
|
```{eval-rst}
|
|
.. autofunction:: gymnasium.register
|
|
```
|
|
|
|
## All registered environments
|
|
|
|
To find all the registered Gymnasium environments, use the `gymnasium.pprint_registry()`.
|
|
This will not include environments registered only in OpenAI Gym however can be loaded by `gymnasium.make`.
|
|
|
|
## Spec
|
|
|
|
```{eval-rst}
|
|
.. autofunction:: gymnasium.spec
|
|
```
|
|
|
|
## Pretty print registry
|
|
|
|
```{eval-rst}
|
|
.. autofunction:: gymnasium.pprint_registry
|
|
```
|