mirror of
https://github.com/facefusion/facefusion-comfyui.git
synced 2026-06-07 11:33:52 +02:00
7 lines
139 B
Python
7 lines
139 B
Python
import subprocess
|
|
from shutil import which
|
|
|
|
|
|
def install() -> None:
|
|
subprocess.run([ which('pip'), 'install', '-r', 'requirements.txt' ])
|