As the title suggests, since now gymis replaced by gymnasium, the original gym-examples repository should be updated accordingly. Most of the changes I have done are:
Replaced import gym with import gymnasium as gym in all scripts.
Update the setup.py so that it does pose the requirement for the gymnasium version
Add folder grid_world/grid_world.py under the env folder, so that it matches the structure of the gymnasium. This way users can easily add and organize more customed environments.
Fix the hyperlink in the README to point to the tutorial of creating customized environment.
Greetings,
As the title suggests, since now
gym
is replaced bygymnasium
, the originalgym-examples
repository should be updated accordingly. Most of the changes I have done are:import gym
withimport gymnasium as gym
in all scripts.setup.py
so that it does pose the requirement for thegymnasium
versiongrid_world/grid_world.py
under theenv
folder, so that it matches the structure of thegymnasium
. This way users can easily add and organize more customed environments.README
to point to the tutorial of creating customized environment.Thanks,
Chris