From d4bb3e6f93e6bd057d6198f9e779a7d1096e834a Mon Sep 17 00:00:00 2001 From: Andrew Ho Date: Wed, 16 Oct 2024 13:00:56 -0400 Subject: [PATCH] fix test install path (#1340) (#1341) --- .github/workflows/_build_test_upload.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/_build_test_upload.yml b/.github/workflows/_build_test_upload.yml index aa7f800e0..f94e377c2 100644 --- a/.github/workflows/_build_test_upload.yml +++ b/.github/workflows/_build_test_upload.yml @@ -395,7 +395,7 @@ jobs: if [[ $PIP_CHANNEL == 'official' ]]; then pip3 install "$PYTORCH_VERSION" -f https://download.pytorch.org/whl/torch_stable.html else - pip3 install --pre "$PYTORCH_VERSION" -f "https://download.pytorch.org/whl/$PIP_CHANNEL" + pip3 install --pre "$PYTORCH_VERSION" --index-url "https://download.pytorch.org/whl/$PIP_CHANNEL/cpu" fi pip3 install -r requirements.txt