From eef90a4964d00a94525d7c8ec9dd9ed90c193546 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Sun, 6 Apr 2025 17:44:07 -0700 Subject: [PATCH] Update some intel arc installation commands --- one_click.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/one_click.py b/one_click.py index 2a161e11..72626010 100644 --- a/one_click.py +++ b/one_click.py @@ -302,9 +302,9 @@ def install_webui(): if selected_gpu == "INTEL": # Install oneAPI dependencies via conda print_big_message("Installing Intel oneAPI runtime libraries.") - run_cmd("conda install -y -c https://software.repos.intel.com/python/conda/ -c conda-forge dpcpp-cpp-rt=2024.0 mkl-dpcpp=2024.0") + run_cmd("conda install -y -c https://software.repos.intel.com/python/conda/ -c conda-forge dpcpp-cpp-rt=2024.0 mkl-dpcpp=2024.0", environment=True) # Install libuv required by Intel-patched torch - run_cmd("conda install -y libuv") + run_cmd("conda install -y libuv", environment=True) # Install the webui requirements update_requirements(initial_installation=True, pull=False)