mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-01 06:07:08 +00:00
6 lines
140 B
Python
Executable File
6 lines
140 B
Python
Executable File
#!/usr/bin/env python
|
|
from gym import envs
|
|
envids = [spec.id for spec in envs.registry.all()]
|
|
for envid in sorted(envids):
|
|
print(envid)
|