fix(installer): remove xformers before installation

This commit is contained in:
Eugene Brodsky 2024-10-22 14:13:58 -04:00 committed by psychedelicious
parent d1bb4c2c70
commit 62919a443c

View File

@ -245,6 +245,9 @@ class InvokeAiInstance:
pip = local[self.pip]
# Uninstall xformers if it is present; the correct version of it will be reinstalled if needed
_ = pip["uninstall", "-yqq", "xformers"] & FG
pipeline = pip[
"install",
"--require-virtualenv",