From 6752a826f66c4dcb0e0a06f6773f4604dd880355 Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Sun, 2 Mar 2025 15:43:56 -0500 Subject: [PATCH] Make the missing frontend package error more obvious. --- app/frontend_management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/frontend_management.py b/app/frontend_management.py index 003c97527..3ebcc4c4d 100644 --- a/app/frontend_management.py +++ b/app/frontend_management.py @@ -21,7 +21,7 @@ try: import comfyui_frontend_package except ImportError as e: # TODO: Remove the check after roll out of 0.3.16 - logging.error("comfyui-frontend-package is not installed. Please install the updated requirements.txt file by running: pip install -r requirements.txt") + logging.error("\n\n********** ERROR ***********\n\ncomfyui-frontend-package is not installed. Please install the updated requirements.txt file by running:\npip install -r requirements.txt\n\nThis error is happening because the ComfyUI frontend is no longer shipped as part of the main repo but as a pip package instead.\n********** ERROR **********\n") raise e