- 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
推薦閱讀
- 課課通計(jì)算機(jī)原理
- Hands-On Intelligent Agents with OpenAI Gym
- JavaScript實(shí)例自學(xué)手冊(cè)
- 機(jī)器學(xué)習(xí)及應(yīng)用(在線實(shí)驗(yàn)+在線自測(cè))
- AWS:Security Best Practices on AWS
- 自動(dòng)控制原理
- 輕松學(xué)Java
- 21天學(xué)通Visual Basic
- Embedded Programming with Modern C++ Cookbook
- Linux服務(wù)與安全管理
- 走近大數(shù)據(jù)
- 大數(shù)據(jù)案例精析
- 傳感器與自動(dòng)檢測(cè)
- Microsoft Dynamics CRM 2013 Marketing Automation
- Apache Spark Quick Start Guide