Getting error: module 'gym' has no attribute 'make'
Getting error: module 'gym' has no attribute 'make'
我正在尝试 运行 OpenAI-gym 官方文档中提供的基本 OpenAI-gym 程序:
import gym
env = gym.make("CartPole-v1")
observation = env.reset()
for _ in range(1000):
env.render()
action = env.action_space.sample() # your agent here (this takes random actions)
observation, reward, done, info = env.step(action)
if done:
observation = env.reset()
env.close()
但是程序输出如下错误:
AttributeError: module 'gym' has no attribute 'make'
.
我发现我将我的 python 文件命名为 gym.py 这是不允许的并且给出了错误。所需要做的就是删除该文件并将其命名为 gym_test.py
之类的其他名称,然后 运行 就可以了。
我正在尝试 运行 OpenAI-gym 官方文档中提供的基本 OpenAI-gym 程序:
import gym
env = gym.make("CartPole-v1")
observation = env.reset()
for _ in range(1000):
env.render()
action = env.action_space.sample() # your agent here (this takes random actions)
observation, reward, done, info = env.step(action)
if done:
observation = env.reset()
env.close()
但是程序输出如下错误:
AttributeError: module 'gym' has no attribute 'make'
.
我发现我将我的 python 文件命名为 gym.py 这是不允许的并且给出了错误。所需要做的就是删除该文件并将其命名为 gym_test.py
之类的其他名称,然后 运行 就可以了。