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
import gym
env = gym.make('ALE/Assault-v5', render_mode='human')
state, info = env.reset()
for i in range(50): env.step(1)
env.reset()
env.close()
When the code above get executed, the rendering is normal.
However, the popped up window has a much larger resolution than my screen and cannot be resized.
In addition to that, after rendering, reset() and close() are called as suggested by the document.
But the popped up window would not close similar to the following issue. #499
IPython platform needs to be closed to get rid of the window.
I have:
ale-py 0.8.1
gym 0.26.2
IPython 8.16.1
OS Arch Linux
The text was updated successfully, but these errors were encountered:
When the code above get executed, the rendering is normal.
However, the popped up window has a much larger resolution than my screen and cannot be resized.
In addition to that, after rendering, reset() and close() are called as suggested by the document.
But the popped up window would not close similar to the following issue. #499
IPython platform needs to be closed to get rid of the window.
I have:
ale-py 0.8.1
gym 0.26.2
IPython 8.16.1
OS Arch Linux
The text was updated successfully, but these errors were encountered: