diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-30 15:48:09 +0300 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-30 15:48:09 +0300 |
commit | 19de2a626b92bcfe83a97477f20d0faf9b3204c0 (patch) | |
tree | 4a07a114957891116ff8d5b989fc750506af349c | |
parent | ee9fdf7f62984dc30770fb1a73e68736b319746f (diff) |
make linux launch.py use XFORMERS_PACKAGE var too; thanks, acncagua
-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("install xformers==0.0.16rc425", "xformers")
+ run_pip(f"install xformers=={xformers_package}", "xformers")
if not is_installed("pyngrok") and ngrok:
run_pip("install pyngrok", "ngrok")
|