@@ -75,7 +75,7 @@ will simply update the comfy.yaml file to reflect the local setup
7575- Example 1: To run the recently executed ComfyUI:
7676 - ` comfy --recent launch `
7777- Example 2: To install a package on the ComfyUI in the current directory:
78- - ` comfy --here node install ComfyUI-Impact-Pack `
78+ - ` comfy --here node install comfyui-impact-pack `
7979- Example 3: To update the automatically selected path of ComfyUI and custom nodes based on priority:
8080
8181 - ` comfy node update all `
@@ -168,7 +168,7 @@ comfy node [show|simple-show] [installed|enabled|not-installed|disabled|all|snap
168168
169169 ` comfy node update all `
170170
171- ` comfy node install ComfyUI-Impact-Pack `
171+ ` comfy node install comfyui-impact-pack `
172172
173173- Managing snapshot:
174174
@@ -186,6 +186,32 @@ comfy node [show|simple-show] [installed|enabled|not-installed|disabled|all|snap
186186
187187 ` comfy node deps-in-workflow --workflow=<workflow .json/.png file> --output=<output deps .json file> `
188188
189+ #### Unified Dependency Resolution (--uv-compile)
190+
191+ Requires ComfyUI-Manager v4.1+. Instead of installing dependencies per-node with
192+ ` pip install ` , ` --uv-compile ` batch-resolves all custom node dependencies via
193+ ` uv pip compile ` to avoid version conflicts.
194+
195+ - Install with unified resolution:
196+
197+ ` comfy node install comfyui-impact-pack --uv-compile `
198+
199+ - Available on: ` install ` , ` reinstall ` , ` update ` , ` fix ` , ` restore-snapshot ` ,
200+ ` restore-dependencies ` , ` install-deps `
201+
202+ - Run standalone (resolve all existing custom node dependencies):
203+
204+ ` comfy node uv-sync `
205+
206+ - ` --uv-compile ` is mutually exclusive with ` --fast-deps ` and ` --no-deps ` .
207+
208+ - To make ` --uv-compile ` the default for all commands, see
209+ [ uv-compile default] ( #uv-compile-default ) below.
210+
211+ - Use ` --no-uv-compile ` to override the default for a single command:
212+
213+ ` comfy node install comfyui-impact-pack --no-uv-compile `
214+
189215#### Bisect custom nodes
190216
191217If you encounter bugs only with custom nodes enabled, and want to find out which custom node(s) causes the bug,
@@ -216,18 +242,40 @@ the bisect tool can help you pinpoint the custom node that causes the issue.
216242
217243### Managing ComfyUI-Manager
218244
219- - disable GUI of ComfyUI-Manager (disable Manager menu and Server)
245+ - Disable ComfyUI-Manager completely (no manager flags passed to ComfyUI):
220246
221- ` comfy manager disable-gui `
247+ ` comfy manager disable `
222248
223- - enable GUI of ComfyUI-Manager
249+ - Enable ComfyUI-Manager with new GUI:
224250
225251 ` comfy manager enable-gui `
226252
253+ - Enable ComfyUI-Manager without GUI (manager runs but UI is hidden):
254+
255+ ` comfy manager disable-gui `
256+
257+ - Enable ComfyUI-Manager with legacy GUI:
258+
259+ ` comfy manager enable-legacy-gui `
260+
227261- Clear reserved startup action:
228262
229263 ` comfy manager clear `
230264
265+ #### uv-compile default
266+
267+ Set ` --uv-compile ` as the default behavior for all custom node operations:
268+
269+ ` comfy manager uv-compile-default true `
270+
271+ When enabled, all node commands (` install ` , ` reinstall ` , ` update ` , ` fix ` ,
272+ ` restore-snapshot ` , ` restore-dependencies ` , ` install-deps ` ) will automatically
273+ use ` --uv-compile ` . Use ` --no-uv-compile ` on any individual command to override.
274+
275+ To disable:
276+
277+ ` comfy manager uv-compile-default false `
278+
231279## Beta Feature: format of comfy-lock.yaml (WIP)
232280
233281```
0 commit comments