Let's update our version of pip first:
(rl_gym_book) praveen@ubuntu:~$ pip install --ignore-installed pip
Then, let's download the source code of OpenAI Gym from the GitHub repository into our home folder:
(rl_gym_book) praveen@ubuntu:~$cd ~ (rl_gym_book) praveen@ubuntu:~$git clone https://github.com/openai/gym.git (rl_gym_book) praveen@ubuntu:~$cd gym
We are now in the final stage of a complete ...