ComfyUI/main.py
2024-06-17 15:50:32 -07:00

9 lines
291 B
Python

import asyncio
import warnings
from comfy.cmd.main import main
if __name__ == "__main__":
warnings.warn("main.py is deprecated. Start comfyui by installing the package through the instructions in the README, not by cloning the repository.", DeprecationWarning)
asyncio.run(main())