From 996c49daa75abf3b485e1b6b3074b117084c9e3e Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Thu, 25 May 2023 10:50:20 -0300 Subject: [PATCH] Remove bitsandbytes installation step Following https://github.com/oobabooga/text-generation-webui/commit/548f05e106ec41aa58adc6bcb1ff88116c0750c4 --- webui.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webui.py b/webui.py index eac630fc..faf0452d 100644 --- a/webui.py +++ b/webui.py @@ -72,9 +72,9 @@ def install_dependencies(): # Clone webui to our computer run_cmd("git clone https://github.com/oobabooga/text-generation-webui.git", assert_success=True, environment=True) - if sys.platform.startswith("win"): - # Fix a bitsandbytes compatibility issue with Windows - run_cmd("python -m pip install https://github.com/jllllll/bitsandbytes-windows-webui/raw/main/bitsandbytes-0.38.1-py3-none-any.whl", assert_success=True, environment=True) + # if sys.platform.startswith("win"): + # # Fix a bitsandbytes compatibility issue with Windows + # run_cmd("python -m pip install https://github.com/jllllll/bitsandbytes-windows-webui/raw/main/bitsandbytes-0.38.1-py3-none-any.whl", assert_success=True, environment=True) # Install the webui dependencies update_dependencies()