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
The 12th line in cmd_util.py file is not correct:
from gym.wrappers import FlattenDictWrapper
This is out of date after gym 0.15.4. I think the correct code is:
try:
from gym.wrappers import FlattenDictWrapper
except:
# gym 0.15.4 remove FlattendDictWrapper
from gym.wrappers import FilterObservation, FlattenObservation
The text was updated successfully, but these errors were encountered:
The 12th line in cmd_util.py file is not correct:
from gym.wrappers import FlattenDictWrapper
This is out of date after gym 0.15.4. I think the correct code is:
try:
from gym.wrappers import FlattenDictWrapper
except:
# gym 0.15.4 remove FlattendDictWrapper
from gym.wrappers import FilterObservation, FlattenObservation
The text was updated successfully, but these errors were encountered: