From e16e5997ef8553ce8b763bc44b9fc5e596d892fc Mon Sep 17 00:00:00 2001 From: Song Fuchang Date: Thu, 7 Dec 2023 08:07:01 +0800 Subject: [PATCH] Update IPEX install URL. (#4825) * Old pip url no longer works. Use the latest url from * https://intel.github.io/intel-extension-for-pytorch/index.html#installation --- one_click.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/one_click.py b/one_click.py index 1f91f6ad..367a6e57 100644 --- a/one_click.py +++ b/one_click.py @@ -218,7 +218,7 @@ def install_webui(): elif is_linux() and (choice == "C" or choice == "N"): install_pytorch = "python -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu" elif choice == "D": - install_pytorch = "python -m pip install torch==2.0.1a0 torchvision==0.15.2a0 intel_extension_for_pytorch==2.0.110+xpu -f https://developer.intel.com/ipex-whl-stable-xpu" + install_pytorch = "python -m pip install torch==2.0.1a0 torchvision==0.15.2a0 intel_extension_for_pytorch==2.0.110+xpu --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/" # Install Git and then Pytorch run_cmd(f"{install_git} && {install_pytorch} && python -m pip install py-cpuinfo==9.0.0", assert_success=True, environment=True)