From 72e155665d1a2511507506e923b1a4c11a1d1623 Mon Sep 17 00:00:00 2001 From: Noam Bressler Date: Tue, 30 Jan 2024 20:22:48 +0200 Subject: [PATCH] attempt fix build --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index ba5818a61e..a6ae6080e8 100644 --- a/makefile +++ b/makefile @@ -157,13 +157,13 @@ vision-torch-tf-setup: env then \ $(PIP) install -q\ "torch==1.10.2+cu111" "torchvision==0.11.3+cu111" \ - -f https://s3.amazonaws.com/pytorch/whl/torch_stable.html; \ + -f https://download.pytorch.org/whl/cu111/torch_stable.html; \ $(PIP) install -q "tensorflow-gpu==2.11.0"; \ elif [ $(OS) = "Linux" ]; \ then \ $(PIP) install -q\ "torch==1.10.2+cpu" "torchvision==0.11.3+cpu" \ - -f https://s3.amazonaws.com/pytorch/whl/torch_stable.html; \ + -f https://download.pytorch.org/whl/cpu/torch_stable.html; \ $(PIP) install -q "tensorflow==2.11.0"; \ else \ $(PIP) install -q torch "torchvision==0.11.3"; \ @@ -242,7 +242,7 @@ test-win: @$(WIN_ENV)\Scripts\activate.bat $(PIP_WIN) install -q\ "torch==1.10.2+cpu" "torchvision==0.11.3+cpu" \ - -f https://s3.amazonaws.com/pytorch/whl/torch_stable.html; + -f https://download.pytorch.org/whl/cpu/torch_stable.html; @$(PIP_WIN) install -q "tensorflow-hub==0.12.0"; @$(PIP_WIN) install -q "tensorflow==2.11.0"; @$(PIP_WIN) install -U pip