mirror of
https://github.com/facefusion/facefusion-comfyui.git
synced 2026-04-22 17:16:11 +02:00
8 lines
211 B
Python
8 lines
211 B
Python
import subprocess
|
|
from shutil import which
|
|
|
|
|
|
def install() -> None:
|
|
subprocess.run([ which('pip'), 'install', 'httpx==0.28.1', '-q' ])
|
|
subprocess.run([ which('pip'), 'install', 'httpx-retries==0.4.0', '-q' ])
|