From 6e2774350613936e1feafe78742ba3e344f73178 Mon Sep 17 00:00:00 2001 From: Guang Yang Date: Thu, 11 Apr 2024 15:26:34 -0700 Subject: [PATCH] [RELEASE-ONLY] Fix install_requirements.sh --- install_requirements.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_requirements.sh b/install_requirements.sh index 2b568f70229..aaa105f6ef9 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[@]}" #