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
I try to run the sample code you have, it gives me this error. Gym is installed and working.
Traceback (most recent call last):
File "./q_learning_maze.py", line 192, in <module>
env.monitor.start(recording_folder, force=True)
File "/home/user/anaconda3/lib/python3.7/site-packages/gym/core.py", line 216, in __getattr__
return getattr(self.env, name)
AttributeError: 'MazeEnvRandom10x10Plus' object has no attribute 'monitor'
The text was updated successfully, but these errors were encountered:
set ENABLE_RECORDING=False in the script, by default its set to True and is used for recording the episodes in videos. The script will run fine after that, but will not record anything.
I try to run the sample code you have, it gives me this error. Gym is installed and working.
The text was updated successfully, but these errors were encountered: