IOPaint/lama_cleaner/installer.py
2023-03-29 22:05:34 +08:00

13 lines
232 B
Python

import subprocess
import sys
def install(package):
subprocess.check_call([sys.executable, "-m", "pip", "install", package])
def install_plugins_package():
install("rembg")
install("realesrgan")
install("gfpgan")