Skip to content

Instantly share code, notes, and snippets.

@gkhayes
Created February 16, 2019 02:14
Show Gist options
  • Save gkhayes/7476a4b10ca75801b75a0094397e5eb7 to your computer and use it in GitHub Desktop.
Save gkhayes/7476a4b10ca75801b75a0094397e5eb7 to your computer and use it in GitHub Desktop.
Run OpenAI Gym to make sure it has been installed correctly.
import gym
env = gym.make('CartPole-v0')
env.reset()
for _ in range(1000):
env.render()
env.step(env.action_space.sample())
env.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment