From 4bf087d857b8bb86132e5e0a13076c99e818ab3c Mon Sep 17 00:00:00 2001 From: Hao Zhu Date: Tue, 1 Oct 2024 11:12:45 -0700 Subject: [PATCH] update libssl link (#203) --- notebooks/tutorials/1.1-setup.ipynb | 4 ++-- notebooks/tutorials/1.2-browse-data.ipynb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/notebooks/tutorials/1.1-setup.ipynb b/notebooks/tutorials/1.1-setup.ipynb index f00e7d33..254275a0 100644 --- a/notebooks/tutorials/1.1-setup.ipynb +++ b/notebooks/tutorials/1.1-setup.ipynb @@ -73,8 +73,8 @@ "!curl -fsSL https://packages.redis.io/redis-stack/redis-stack-server-7.2.0-v10.focal.x86_64.tar.gz -o redis-stack-server.tar.gz\n", "!tar -xvf redis-stack-server.tar.gz\n", "# Installs libssl1.1 for Ubuntu 22 source: https://stackoverflow.com/questions/72133316/libssl-so-1-1-cannot-open-shared-object-file-no-such-file-or-directory\n", - "!wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb\n", - "!sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb\n", + "!wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb\n", + "!sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb\n", "%pip install redis" ] }, diff --git a/notebooks/tutorials/1.2-browse-data.ipynb b/notebooks/tutorials/1.2-browse-data.ipynb index ff500878..66f0b83c 100644 --- a/notebooks/tutorials/1.2-browse-data.ipynb +++ b/notebooks/tutorials/1.2-browse-data.ipynb @@ -77,8 +77,8 @@ "!curl -fsSL https://packages.redis.io/redis-stack/redis-stack-server-7.2.0-v10.focal.x86_64.tar.gz -o redis-stack-server.tar.gz\n", "!tar -xvf redis-stack-server.tar.gz\n", "# Installs libssl1.1 for Ubuntu 22 source: https://stackoverflow.com/questions/72133316/libssl-so-1-1-cannot-open-shared-object-file-no-such-file-or-directory\n", - "!wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb\n", - "!sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb\n", + "!wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb\n", + "!sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb\n", "%pip install redis" ] },