aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDGdev91 <iperpido91@gmail.com>2023-04-11 11:22:28 +0200
committerDGdev91 <iperpido91@gmail.com>2023-04-11 11:22:28 +0200
commit9edd4b6e516ec327e15cc00a3933c681fc4b2f75 (patch)
treeec2bf17073ddddb227c5a5a0865da354a9e64839
parent3a5b47e26e8cb1cd640fedfe7cb5263a588d7088 (diff)
Using --index-url instead of --extra-index-url following new PyTorch install command
-rwxr-xr-xwebui.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui.sh b/webui.sh
index 7d9a8538..3b92e184 100755
--- a/webui.sh
+++ b/webui.sh
@@ -118,7 +118,7 @@ case "$gpu_info" in
esac
if echo "$gpu_info" | grep -q "AMD" && [[ -z "${TORCH_COMMAND}" ]]
then
- export TORCH_COMMAND="pip install torch==1.13.1+rocm5.2 torchvision==0.14.1+rocm5.2 --extra-index-url https://download.pytorch.org/whl/rocm5.2"
+ export TORCH_COMMAND="pip install torch==1.13.1+rocm5.2 torchvision==0.14.1+rocm5.2 --index-url https://download.pytorch.org/whl/rocm5.2"
fi
for preq in "${GIT}" "${python_cmd}"