ComfyUI/main.py
Chenlei Hu 9dd549e253
Add --no-custom-node cmd flag (#3903)
* Add --no-custom-node cmd flag

* nit
2024-07-01 17:54:03 -04: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())