From 3720f234057ecdb4fa4e9d98c26cb4622d2c4b97 Mon Sep 17 00:00:00 2001 From: Dennis Heesmans Date: Fri, 17 Jan 2025 15:55:54 +0100 Subject: [PATCH] Updated requirements and changed pickle import pickle5 is compatible only with Python 3.8 and earlier. If you're using Python 3.9 or later, you don't need pickle5 because its functionality is already included in the standard library. --- notebooks/unit2/requirements-unit2.txt | 1 - notebooks/unit2/unit2.ipynb | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/notebooks/unit2/requirements-unit2.txt b/notebooks/unit2/requirements-unit2.txt index 3209a69c..2900fc40 100644 --- a/notebooks/unit2/requirements-unit2.txt +++ b/notebooks/unit2/requirements-unit2.txt @@ -3,7 +3,6 @@ pygame numpy huggingface_hub -pickle5 pyyaml==6.0 imageio imageio_ffmpeg diff --git a/notebooks/unit2/unit2.ipynb b/notebooks/unit2/unit2.ipynb index e9ae624c..5df4ea7e 100644 --- a/notebooks/unit2/unit2.ipynb +++ b/notebooks/unit2/unit2.ipynb @@ -289,7 +289,7 @@ "import os\n", "import tqdm\n", "\n", - "import pickle5 as pickle\n", + "import pickle\n", "from tqdm.notebook import tqdm" ] },