I have learned about cart pole from open ai GYM and I was wondering it is possible to make a game where user can control the pole. I have tried to take user key stroke value as input and put that in action but the environment just freezes. Is there any way to slow the game and take user input to control? I am taking user input as
a = input()
action = int(a)
but it seems the wrong way.