无法找到记录器“universe”错误消息的处理程序

时间:2017-11-14 17:14:28

标签: openai-gym

我安装了openai健身房和宇宙和码头工人。当我运行以下代码时,我收到此错误消息:

找不到记录器“universe”的处理程序

我跑的代码是:

import gym     
import universe # register the universe environments

env = gym.make('flashgames.DuskDrive-v0')
env.configure(remotes=1) # downloads and starts a flashgames runtime
observation_n = env.reset()

while True:
        action_n = [[('KeyEvent', 'ArrowUp', True)] for ob in     observation_n] # your agent here
        observation_n, reward_n, done_n, info = env.step(action_n)
        env.render()

我相信它是env.configure(remotes = 1),经过两天的研究并尝试了其他程序员建议的大量修复,我仍然收到此错误消息。有谁可以帮助我吗? 我在OS X上使用终端。非常感谢你提前!

0 个答案:

没有答案