From 69d8db961ea1d7056155c581df711898b4276e23 Mon Sep 17 00:00:00 2001 From: Saran Tunyasuvunakool Date: Thu, 23 Jul 2020 18:57:03 +0100 Subject: [PATCH] Replace "pip install dm_control[locomotion_mazes]" commands with "pip install dm_control". The [locomotion_mazes] extra has been deprecated in dm_control, and the labmaze dependency is now on the main dm_control package. PiperOrigin-RevId: 322820779 --- rl_unplugged/dm_control_suite_d4pg.ipynb | 5 ++--- rl_unplugged/rwrl_d4pg.ipynb | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/rl_unplugged/dm_control_suite_d4pg.ipynb b/rl_unplugged/dm_control_suite_d4pg.ipynb index 1c8ed6c..f401fda 100644 --- a/rl_unplugged/dm_control_suite_d4pg.ipynb +++ b/rl_unplugged/dm_control_suite_d4pg.ipynb @@ -119,9 +119,8 @@ "# Configure dm_control to use the OSMesa rendering backend\n", "%env MUJOCO_GL=osmesa\n", "\n", - "# Install dm_control, including extra dependencies needed for the locomotion\n", - "# mazes.\n", - "!pip install dm_control[locomotion_mazes]" + "# Install dm_control\n", + "!pip install dm_control" ] }, { diff --git a/rl_unplugged/rwrl_d4pg.ipynb b/rl_unplugged/rwrl_d4pg.ipynb index 3687ca8..672b9ee 100644 --- a/rl_unplugged/rwrl_d4pg.ipynb +++ b/rl_unplugged/rwrl_d4pg.ipynb @@ -116,9 +116,8 @@ "# Configure dm_control to use the OSMesa rendering backend\n", "%env MUJOCO_GL=osmesa\n", "\n", - "# Install dm_control, including extra dependencies needed for the locomotion\n", - "# mazes.\n", - "!pip install dm_control[locomotion_mazes]" + "# Install dm_control\n", + "!pip install dm_control" ] }, {