diff options
author | C43H66N12O12S2 <36072735+C43H66N12O12S2@users.noreply.github.com> | 2022-10-08 13:22:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-08 13:22:38 +0000 |
commit | ca5f0f149c29c344a6badd055b15b5e5fcd6e938 (patch) | |
tree | a9fdbf05625301887b7b5ff4bf7868a4ccefbf46 | |
parent | 69d0053583757ce2942d62de81e8b89e6be07840 (diff) | |
download | stable-diffusion-webui-gfx803-ca5f0f149c29c344a6badd055b15b5e5fcd6e938.tar.gz stable-diffusion-webui-gfx803-ca5f0f149c29c344a6badd055b15b5e5fcd6e938.tar.bz2 stable-diffusion-webui-gfx803-ca5f0f149c29c344a6badd055b15b5e5fcd6e938.zip |
Update launch.py
-rw-r--r-- | launch.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -129,7 +129,7 @@ if not is_installed("clip"): if not is_installed("xformers") and xformers:
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:
+ elif platform.system() == "Linux":
run_pip("install xformers", "xformers")
os.makedirs(dir_repos, exist_ok=True)
|