Spaces:
Runtime error
Runtime error
File size: 243 Bytes
a41bec3 | 1 2 3 4 5 6 7 8 9 10 11 | import os
import subprocess
os.system("git clone https://github.com/comfyanonymous/ComfyUI.git")
os.chdir("ComfyUI")
subprocess.run(["pip", "install", "-r", "requirements.txt"])
subprocess.run(["python", "main.py", "--listen", "0.0.0.0"])
|