From 243462ff797ad7a3b512db10b72aebeedd1e3540 Mon Sep 17 00:00:00 2001 From: Ashish <153734689+ASHISHBVB@users.noreply.github.com> Date: Sun, 16 Feb 2025 12:17:40 +0000 Subject: [PATCH] Fix: Boost library link --- README.md | 2 +- tutorials/CONTRIBUTING.md | 2 +- tutorials/dingo_tutorial.ipynb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fcd73759..9e122771 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ git submodule update --init You will need to download and unzip the Boost library: ``` -wget -O boost_1_76_0.tar.bz2 https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2 +wget -O boost_1_76_0.tar.bz2 https://archives.boost.io/release/1.76.0/source/boost_1_76_0.tar.bz2 tar xjf boost_1_76_0.tar.bz2 rm boost_1_76_0.tar.bz2 ``` diff --git a/tutorials/CONTRIBUTING.md b/tutorials/CONTRIBUTING.md index 318a1157..d28a7946 100644 --- a/tutorials/CONTRIBUTING.md +++ b/tutorials/CONTRIBUTING.md @@ -53,7 +53,7 @@ To do so, you need to run Now get the `boost` library: - wget -O boost_1_76_0.tar.bz2 https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2 + wget -O boost_1_76_0.tar.bz2 https://archives.boost.io/release/1.76.0/source/boost_1_76_0.tar.bz2 tar xjf boost_1_76_0.tar.bz2 rm boost_1_76_0.tar.bz2 diff --git a/tutorials/dingo_tutorial.ipynb b/tutorials/dingo_tutorial.ipynb index 0b396f13..c95aa8f8 100644 --- a/tutorials/dingo_tutorial.ipynb +++ b/tutorials/dingo_tutorial.ipynb @@ -533,7 +533,7 @@ }, "outputs": [], "source": [ - "!wget -O boost_1_76_0.tar.bz2 https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2 &> /dev/null\n", + "!wget -O boost_1_76_0.tar.bz2 https://archives.boost.io/release/1.76.0/source/boost_1_76_0.tar.bz2 &> /dev/null\n", "!tar xjf boost_1_76_0.tar.bz2 &> /dev/null\n", "!rm boost_1_76_0.tar.bz2 &> /dev/null" ]