aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-05-18 14:51:58 +0000
committerGitHub <noreply@github.com>2023-05-18 14:51:58 +0000
commit3885f8a63e0954ac96e6681aa8b33281f10337a2 (patch)
treeb2b4a6de363c000e7cf292dc885ce2ba1f297701
parent44c37f94e176667ccdfeb74916e4640fa9dc586d (diff)
parent96cba45d71cf25ab2f3bb7d7085347c8b6ef6d7d (diff)
downloadstable-diffusion-webui-gfx803-3885f8a63e0954ac96e6681aa8b33281f10337a2.tar.gz
stable-diffusion-webui-gfx803-3885f8a63e0954ac96e6681aa8b33281f10337a2.tar.bz2
stable-diffusion-webui-gfx803-3885f8a63e0954ac96e6681aa8b33281f10337a2.zip
Merge pull request #10381 from AUTOMATIC1111/minor-fix
Minor fix
-rw-r--r--launch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/launch.py b/launch.py
index a3261c0c..6e9ca8de 100644
--- a/launch.py
+++ b/launch.py
@@ -278,7 +278,7 @@ def prepare_environment():
if not is_installed("xformers"):
exit(0)
elif platform.system() == "Linux":
- run_pip(f"install {xformers_package}", "xformers")
+ run_pip(f"install -U -I --no-deps {xformers_package}", "xformers")
if not is_installed("ngrok") and args.ngrok:
run_pip("install ngrok", "ngrok")