Using --index-url instead of --extra-index-url following new PyTorch install command

This commit is contained in:
DGdev91 2023-04-11 11:22:28 +02:00
parent 3a5b47e26e
commit 9edd4b6e51
1 changed files with 1 additions and 1 deletions

View File

@ -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}"