From 43b442e460a1bc6b2eb56ab70e94ab928f51619a Mon Sep 17 00:00:00 2001 From: Francis Duvivier Date: Wed, 29 Mar 2023 23:48:26 +0200 Subject: [PATCH] Fix gym install error (#13) Fixes error in google colab, see https://github.com/openai/gym/issues/3200 --- rl-baselines-zoo.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rl-baselines-zoo.ipynb b/rl-baselines-zoo.ipynb index ff70ac5..fbec166 100644 --- a/rl-baselines-zoo.ipynb +++ b/rl-baselines-zoo.ipynb @@ -41,6 +41,7 @@ "outputs": [], "source": [ "!apt-get update && apt-get install swig cmake ffmpeg freeglut3-dev xvfb\n", + "!pip install setuptools==66", "!pip install pyglet==1.5.27" ] }, @@ -338,4 +339,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} \ No newline at end of file +}