From 548bdcff81481d7039d3f3435066a9370aba3c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20Gallou=C3=A9dec?= <45557362+qgallouedec@users.noreply.github.com> Date: Tue, 5 Dec 2023 11:31:11 +0100 Subject: [PATCH] Fix doc: Gym to Gymnasium Atari install command in `examples.rst` (#1773) * Update examples.rst * Update changelog.rst --- docs/guide/examples.rst | 2 +- docs/misc/changelog.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/guide/examples.rst b/docs/guide/examples.rst index 0d097483f..a4729bfb3 100644 --- a/docs/guide/examples.rst +++ b/docs/guide/examples.rst @@ -364,7 +364,7 @@ Atari Games Training a RL agent on Atari games is straightforward thanks to ``make_atari_env`` helper function. It will do `all the preprocessing `_ -and multiprocessing for you. To install the Atari environments, run the command ``pip install gym[atari, accept-rom-license]`` to install the Atari environments and ROMs, or install Stable Baselines3 with ``pip install stable-baselines3[extra]`` to install this and other optional dependencies. +and multiprocessing for you. To install the Atari environments, run the command ``pip install gymnasium[atari,accept-rom-license]`` to install the Atari environments and ROMs, or install Stable Baselines3 with ``pip install stable-baselines3[extra]`` to install this and other optional dependencies. .. image:: ../_static/img/colab-badge.svg :target: https://colab.research.google.com/github/Stable-Baselines-Team/rl-colab-notebooks/blob/sb3/atari_games.ipynb diff --git a/docs/misc/changelog.rst b/docs/misc/changelog.rst index 71f32c2c5..647a0e89e 100644 --- a/docs/misc/changelog.rst +++ b/docs/misc/changelog.rst @@ -91,6 +91,7 @@ Documentation: - Updated RL Tips and Tricks (include recommendation for evaluation, added links to DroQ, ARS and SBX). - Fixed various typos and grammar mistakes - Added PokemonRedExperiments to the project page +- Fixed an out-of-date command for installing Atari in examples Release 2.1.0 (2023-08-17) --------------------------