iopaint-migan / app.py
Sanster's picture
update
c4d0a56
raw
history blame
No virus
182 Bytes
import subprocess
if __name__ == "__main__":
cmd = "iopaint start --model migan --host 0.0.0.0 --port 7860"
# start subprocess using cmd
subprocess.run(cmd, shell=True)