From 6a67ec2cc4359f3264d613d47c8fbccdedf9d938 Mon Sep 17 00:00:00 2001 From: Guang Yang <42389959+guangy10@users.noreply.github.com> Date: Thu, 11 Apr 2024 17:01:46 -0700 Subject: [PATCH] [RELEASE-ONLY] Fix install_requirements.sh (#3002) --- install_requirements.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_requirements.sh b/install_requirements.sh index 2b568f7022..aaa105f6ef 100755 --- a/install_requirements.sh +++ b/install_requirements.sh @@ -95,7 +95,7 @@ REQUIREMENTS_TO_INSTALL=( # Install the requirements. `--extra-index-url` tells pip to look for package # versions on the provided URL if they aren't available on the default URL. -$PIP_EXECUTABLE install --extra-index-url "${TORCH_NIGHTLY_URL}" \ +$PIP_EXECUTABLE install --extra-index-url "${TORCH_URL}" \ "${REQUIREMENTS_TO_INSTALL[@]}" #