From 3681eb8f9ebdc73caf11f74da5233d9f1f6b23b9 Mon Sep 17 00:00:00 2001 From: Thomas Simonini Date: Tue, 30 May 2023 14:19:57 +0200 Subject: [PATCH] Update hands-on-cleanrl.mdx --- units/en/unit8/hands-on-cleanrl.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/units/en/unit8/hands-on-cleanrl.mdx b/units/en/unit8/hands-on-cleanrl.mdx index d41f71b..2e35f07 100644 --- a/units/en/unit8/hands-on-cleanrl.mdx +++ b/units/en/unit8/hands-on-cleanrl.mdx @@ -111,10 +111,10 @@ virtual_display.start() For this exercise, we use `gym==0.21` because the video was recorded with Gym. ```python -pip install gym==0.21 +pip install gym==0.22 pip install imageio-ffmpeg pip install huggingface_hub -pip install box2d +pip install gym[box2d]==0.22 ``` ## Let's code PPO from scratch with Costa Huang's tutorial