diff options
author | DGdev91 <iperpido91@gmail.com> | 2023-04-11 09:22:28 +0000 |
---|---|---|
committer | DGdev91 <iperpido91@gmail.com> | 2023-04-11 09:22:28 +0000 |
commit | 9edd4b6e516ec327e15cc00a3933c681fc4b2f75 (patch) | |
tree | ec2bf17073ddddb227c5a5a0865da354a9e64839 /webui.sh | |
parent | 3a5b47e26e8cb1cd640fedfe7cb5263a588d7088 (diff) | |
download | stable-diffusion-webui-gfx803-9edd4b6e516ec327e15cc00a3933c681fc4b2f75.tar.gz stable-diffusion-webui-gfx803-9edd4b6e516ec327e15cc00a3933c681fc4b2f75.tar.bz2 stable-diffusion-webui-gfx803-9edd4b6e516ec327e15cc00a3933c681fc4b2f75.zip |
Using --index-url instead of --extra-index-url following new PyTorch install command
Diffstat (limited to 'webui.sh')
-rwxr-xr-x | webui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}" |