diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-30 15:48:10 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-30 15:48:10 +0000 |
commit | 2c1bb46c7ad5b4536f6587d327a03f0ff7811c5d (patch) | |
tree | cea0c6424b17db1002c0431d1f6f336b0719c8a9 /launch.py | |
parent | 19de2a626b92bcfe83a97477f20d0faf9b3204c0 (diff) | |
download | stable-diffusion-webui-gfx803-2c1bb46c7ad5b4536f6587d327a03f0ff7811c5d.tar.gz stable-diffusion-webui-gfx803-2c1bb46c7ad5b4536f6587d327a03f0ff7811c5d.tar.bz2 stable-diffusion-webui-gfx803-2c1bb46c7ad5b4536f6587d327a03f0ff7811c5d.zip |
amend the error in previous commit
Diffstat (limited to 'launch.py')
-rw-r--r-- | launch.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -290,7 +290,7 @@ def prepare_environment(): if not is_installed("xformers"):
exit(0)
elif platform.system() == "Linux":
- run_pip(f"install xformers=={xformers_package}", "xformers")
+ run_pip(f"install {xformers_package}", "xformers")
if not is_installed("pyngrok") and ngrok:
run_pip("install pyngrok", "ngrok")
|