mirror of
https://github.com/facefusion/facefusion-comfyui.git
synced 2026-05-01 13:47:51 +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' ])
|