rlcode / reinforcement-learning-kr

[파이썬과 케라스로 배우는 강화학습] 예제
MIT License
371 stars 228 forks source link

AttributeError: module 'gym' has no attribute 'make' #21

Closed Juno4301 closed 6 years ago

Juno4301 commented 6 years ago

wiki/install_guide_window.md 페이지의 카트폴 테스트 코드에서 오류가 발생하여 질문드립니다.

import gym env = gym.make('CartPole-v0') env.reset() for _ in range(1000): env.render() env.step(env.action_space.sample())


Traceback (most recent call last): File "C:/Projects/RL_0/test.py", line 2, in env = gym.make('CartPole-v0') AttributeError: module 'gym' has no attribute 'make'