有关开放ai体育馆复古的一些问题

时间:2019-03-25 16:09:01

标签: openai-gym

我已经在Windows系统和Gym Retro中安装了clang

pip3 install gym-retro

当我尝试运行

env = retro.make(game='SonicTheHedgehog-Genesis', state='GreenHillZone.Act1', record='.')

我遇到一个错误:

FileNotFoundError: Game not found: SonicTheHedgehog-Genesis. Did you make sure to import the ROM?

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

对于openai-retro版本'0.7.0',您必须使用.data字段访问功能。

import gym
import retro

for game in retro.data.list_games():
   print(game, retro.data.list_states(game))