mirror of
https://github.com/facefusion/facefusion-comfyui.git
synced 2026-06-05 18:46:35 +02:00
7 lines
145 B
Python
7 lines
145 B
Python
import subprocess
|
|
from shutil import which
|
|
|
|
|
|
def install() -> None:
|
|
subprocess.run([ which('pip'), 'install', '-r', 'requirements.txt', '-q' ])
|