OpenAI Gym Environment of Random Walk example provided in [1] Chapter 6, example 6.2
Assuming you are in rl-exercise folder and using pipenv
pipenv install environment/gym-random-walkimport gym
import gym_random_walk
env = gym.make('RandomWalkSeven-v0')[1] Richard S. Sutton, Andrew G. Barto - Reinforcement Learning: An Introduction
