diff --git a/development/comfyui-server/startup-flags.mdx b/development/comfyui-server/startup-flags.mdx index 8b6da247f..ead0e4dc1 100644 --- a/development/comfyui-server/startup-flags.mdx +++ b/development/comfyui-server/startup-flags.mdx @@ -173,6 +173,8 @@ python main.py --disable-auto-launch ## VRAM & Memory +On Nvidia GPUs, `--async-offload` and `--enable-dynamic-vram` are enabled by default. See the table below for platform-specific defaults. + VRAM mode flags (`--gpu-only`, `--highvram`, `--lowvram`, `--novram`, `--cpu`) are mutually exclusive. diff --git a/installation/update_comfyui.mdx b/installation/update_comfyui.mdx index eacc35a08..b610d9b77 100644 --- a/installation/update_comfyui.mdx +++ b/installation/update_comfyui.mdx @@ -131,6 +131,37 @@ git checkout master +## How to Update ComfyUI Manager + +ComfyUI Manager is a custom node that provides installation and management of other custom nodes, models, and snapshots. It is separate from the ComfyUI core code and has its own update process. + + + + The simplest way to update Manager is through its own interface: + + 1. Open the **ComfyUI Manager** dialog by clicking the **Manager** button in the ComfyUI toolbar + 2. Go to the **Custom Nodes** tab (New UI) or the node list (Legacy UI) + 3. Find **ComfyUI-Manager** in the list and click the **Update** or **Install/Update** button + 4. Restart ComfyUI after the update completes + + + + If you installed ComfyUI Manager manually via Git, update it with: + + ```bash + cd custom_nodes/ComfyUI-Manager + git pull + ``` + + Then restart ComfyUI. + + + + For the Windows Portable version, ComfyUI Manager is built into the core. Update it by updating ComfyUI itself using one of the update scripts in the `update/` folder, or through the Manager UI as described above. + + + +If the Manager is missing or disabled after an update, re-enable it via `--enable-manager` launch flag. See the [ComfyUI Manager Overview](/manager/overview) for details. ## ComfyUI Version Types