IOPaint / iopaint /installer.py
tom12112's picture
Upload 220 files
6c6eb37 verified
raw
history blame contribute delete
235 Bytes
import subprocess
import sys
def install(package):
subprocess.check_call([sys.executable, "-m", "pip", "install", package])
def install_plugins_package():
install("onnxruntime<=1.19.2")
install("rembg[cpu]")