We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug comfy node install-deps --workflow failed without any error
comfy node install-deps --workflow
render@b30981f96736:~/ComfyUI$ comfy node simple-show installed Execute from: /home/render/ComfyUI FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json [DONE] ComfyUI-Manager comfyui-tooling-nodes x-flux-comfyui render@b30981f96736:~/ComfyUI$ comfy node install-deps --deps=workflow_dependency.json Execute from: /home/render/ComfyUI Current snapshot is saved as `2024-08-21_21-25-38_cli-autosave.json` Install: ['https://github.com/Fannovel16/comfyui_controlnet_aux'] Download: git clone 'https://github.com/Fannovel16/comfyui_controlnet_aux' Dependency installation and activation complete. render@b30981f96736:~/ComfyUI$ comfy node simple-show installed Execute from: /home/render/ComfyUI FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json [DONE] ComfyUI-Manager comfyui-tooling-nodes x-flux-comfyui
I have 3 dependencies in my workflow
{ "custom_nodes": { "https://github.com/Acly/comfyui-tooling-nodes": { "state": "installed", "hash": "-" }, "https://github.com/XLabs-AI/x-flux-comfyui": { "state": "installed", "hash": "-" }, "https://github.com/Fannovel16/comfyui_controlnet_aux": { "state": "installed", "hash": "-" } }, "unknown_nodes": [] }
What I found out later that the git clone was throwing a https error. comfy node install package-name was able to throw the correct error
render@b30981f96736:~/ComfyUI$ comfy node install comfyui_controlnet_aux Execute from: /home/render/ComfyUI FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json [DONE] [1/1] Install: ['https://github.com/Fannovel16/comfyui_controlnet_aux'] Download: git clone 'https://github.com/Fannovel16/comfyui_controlnet_aux' ERROR: An error occurred while installing 'comfyui_controlnet_aux'.
To Reproduce
FROM nvidia/cuda:12.3.1-runtime-ubuntu22.04 RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install -y \ bash \ sudo \ python3 \ python3-pip \ git \ wget \ rm -rf /var/lib/apt/lists/* RUN pip install comfy-cli RUN comfy node install-deps --deps=
Expected behavior It will be nice to output errors from comfy node install-deps command.
comfy node install-deps
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
comfy node install-deps --workflow
failed without any errorI have 3 dependencies in my workflow
What I found out later that the git clone was throwing a https error.
comfy node install package-name was able to throw the correct error
To Reproduce
Expected behavior
It will be nice to output errors from
comfy node install-deps
command.The text was updated successfully, but these errors were encountered: