mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-07-14 03:16:59 +08:00
error message
This commit is contained in:
parent
40cfce9365
commit
a5f5dec1b8
@ -12,12 +12,19 @@ from pathlib import Path
|
|||||||
from typing import TypedDict, Optional
|
from typing import TypedDict, Optional
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
import comfyui_frontend_package
|
|
||||||
from typing_extensions import NotRequired
|
from typing_extensions import NotRequired
|
||||||
|
|
||||||
from comfy.cli_args import DEFAULT_VERSION_STRING
|
from comfy.cli_args import DEFAULT_VERSION_STRING
|
||||||
|
|
||||||
|
|
||||||
|
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")
|
||||||
|
raise e
|
||||||
|
|
||||||
|
|
||||||
REQUEST_TIMEOUT = 10 # seconds
|
REQUEST_TIMEOUT = 10 # seconds
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user