From 0cdc0ecebc6692d187402a47c0f20b7a18054c1d Mon Sep 17 00:00:00 2001 From: Gerardonsch Date: Sat, 22 Jan 2022 10:26:35 -0500 Subject: [PATCH] import_error_fix On step two there's a missing dependency, not sure what your preferred solution would be but wanted to raise it! --> ImportError: Cannot import pyglet. HINT: you can install pyglet directly via 'pip install pyglet'. But if you really just want to install all Gym dependencies and not have to think about it, 'pip install -e .[all]' or 'pip install gym[all]' will do it. --- Main Course.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/Main Course.ipynb b/Main Course.ipynb index 0ed7b81..fc4bea7 100644 --- a/Main Course.ipynb +++ b/Main Course.ipynb @@ -24,6 +24,7 @@ "outputs": [], "source": [ "!pip install stable-baselines3[extra]" + "!pip install gym[all]" ] }, {