From 4f9a757172f48e4336b28de09830b13b01bfebe3 Mon Sep 17 00:00:00 2001 From: Robbie Cooper Date: Wed, 4 Jan 2017 18:12:17 -0500 Subject: [PATCH] Configure remotes I had to add this line from the official documentation's example, otherwise I'd get an error and Docker wouldn't start. AttributeError: 'VNCEnv' object has no attribute 'remote_manager' See https://github.com/openai/universe/blob/master/doc/remotes.rst --- demo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/demo.py b/demo.py index b0122a8..642e391 100644 --- a/demo.py +++ b/demo.py @@ -36,6 +36,7 @@ def main(): #init environment env = gym.make('flashgames.CoasterRacer-v0') + env.configure(remotes=1) # downloads and starts a flashgames runtime observation_n = env.reset() #init variables