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