Fix silent install

This commit is contained in:
henryruhs
2025-06-30 19:03:19 +02:00
parent fe4e66edc8
commit 8e41f61671
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
from .facefusion_api import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
from install import install
from .install import install
install()
+1 -1
View File
@@ -3,4 +3,4 @@ from shutil import which
def install() -> None:
subprocess.run([ which('pip'), 'install', '-r', 'requirements.txt' ])
subprocess.run([ which('pip'), 'install', '-r', 'requirements.txt', '-q' ])