You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Garage setup.py specifies gym version 0.17.2. I wouldn't be surprised if some other versions work, but they've been changing the API a lot recently and I unfortunately don't have time to keep the wrapper up to date. Thanks for the the info @causeim
Apparently, classic control environments in Gym have a different key for render modes in
env.metadata
.In fact:
While in the garage wrapper it expects to find
env.metadata['render.modes']
, as it is for other environments.garage/src/garage/envs/gym_env.py
Line 147 in c56513f
This results in a
KeyError
, unsurprisingly:Is it a problem of my version mix? I run with:
garage==2021.3.0
gym==0.23.1
Thank you all for the great work!
The text was updated successfully, but these errors were encountered: