- Reinforcement Learning with TensorFlow
- Sayon Dutta
- 142字
- 2021-08-27 18:52:00
The OpenAI Gym
In order to download and install OpenAI Gym, you can use any of the following options:
$ git clone https://github.com/openai/gym
$ cd gym
$ sudo pip install -e . # minimal install
This will do the minimum install. You can later run the following to do a full install:
$ sudo pip install -e .[all]
You can also fetch Gym as a package for different Python versions as follows:
For Python 2.7, you can use the following options:
$ sudo pip install gym # minimal install
$ sudo pip install gym[all] # full install
$ sudo pip install gym[atari] #for Atari specific environment installation
For Python 3.5, you can use the following options:
$ sudo pip3 install gym # minimal install
$ sudo pip3 install gym[all] # full install
$ sudo pip install gym[atari] #for Atari specific environment installation
推薦閱讀
- 網上沖浪
- Mastercam 2017數控加工自動編程經典實例(第4版)
- Implementing Splunk 7(Third Edition)
- JavaScript典型應用與最佳實踐
- Splunk Operational Intelligence Cookbook
- 21天學通C語言
- ESP8266 Home Automation Projects
- Machine Learning with Apache Spark Quick Start Guide
- Blender 3D Printing by Example
- 貫通Java Web開發三劍客
- Excel 2007終極技巧金典
- Web璀璨:Silverlight應用技術完全指南
- Flash CS3動畫制作
- 人工智能基礎
- 數據結構與實訓