diff options
author | Greendayle <81877451+Greendayle@users.noreply.github.com> | 2022-10-08 16:28:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-08 16:28:22 +0000 |
commit | 0ec80f0125a14c03ac860279f40c0c062dbde0cf (patch) | |
tree | f51f04feecca9006a6a40e622bae3d6ae997e5eb /launch.py | |
parent | 01f8cb44474e454903c11718e6a4f33dbde34bb8 (diff) | |
parent | 3061cdb7b610d4ba7f1ea695d9d6364b591e5bc7 (diff) | |
download | stable-diffusion-webui-gfx803-0ec80f0125a14c03ac860279f40c0c062dbde0cf.tar.gz stable-diffusion-webui-gfx803-0ec80f0125a14c03ac860279f40c0c062dbde0cf.tar.bz2 stable-diffusion-webui-gfx803-0ec80f0125a14c03ac860279f40c0c062dbde0cf.zip |
Merge branch 'master' into dev/deepdanbooru
Diffstat (limited to 'launch.py')
-rw-r--r-- | launch.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -127,7 +127,7 @@ if not is_installed("gfpgan"): if not is_installed("clip"):
run_pip(f"install {clip_package}", "clip")
-if not is_installed("xformers") and xformers:
+if not is_installed("xformers") and xformers and platform.python_version().startswith("3.10"):
if platform.system() == "Windows":
run_pip("install https://github.com/C43H66N12O12S2/stable-diffusion-webui/releases/download/a/xformers-0.0.14.dev0-cp310-cp310-win_amd64.whl", "xformers")
elif platform.system() == "Linux":
|