inpaintingv1 / lama_cleaner /installer.py
a7md2del's picture
Upload folder using huggingface_hub
64bafa9 verified
raw
history blame contribute delete
244 Bytes
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")