-
-
Notifications
You must be signed in to change notification settings - Fork 609
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Proposal] Implement gym.register_envs(minigrid) #455
Comments
|
I think the problem is that Minigrid doesn't register the environments on import. #453 will fix this for gymnasium v1.0 |
|
Oh, you are right, apologize for the confusion, this works only with gymnasium<1.0.0 |
same problem, and I solve it by install gymnasium==0.29.0. When u use 'pip install minigrid', it will get gymnasium==1.0.0 for u automatically. |
true dude, but the thing is when I 'pip install minigrid' as the instruction in the document, it will install gymnasium==1.0.0 automatically for me, which will not work. That's quite confusing. I hope there might be some updates on the document. |
Currently, running the example on the front page of the MiniGrid documentation leads to the following error:
On the other hand, other projects let you easily register all environments at once:
import ale_py; gym.register_envs(ale_py)
.import gymnasium_robotics; gym.register_envs(gymnasium_robotics)
.import highway_env; gym.register_envs(highway_env)
.Is there an analogue for MiniGrid? If not, could you consider adding it?
The text was updated successfully, but these errors were encountered: