From ab6c1a07d575c655b9c592ba0ab6e55d476a1cbf Mon Sep 17 00:00:00 2001 From: xiangyuT Date: Tue, 13 Jan 2026 17:12:39 +0800 Subject: [PATCH] init --- omni/comfyui_windows_setup/README.md | 11 +-- .../setup_portable_env.bat | 68 ------------------- 2 files changed, 2 insertions(+), 77 deletions(-) diff --git a/omni/comfyui_windows_setup/README.md b/omni/comfyui_windows_setup/README.md index 54ef5ad..3a8710a 100644 --- a/omni/comfyui_windows_setup/README.md +++ b/omni/comfyui_windows_setup/README.md @@ -159,11 +159,8 @@ The setup script automatically installs the following custom nodes: | Node | Description | Repository | |------|-------------|------------| | **ComfyUI-Manager** | Plugin manager for easy node installation | [ltdrdata/ComfyUI-Manager](https://github.com/ltdrdata/ComfyUI-Manager) | -| **VideoHelperSuite** | Video processing and generation tools | [Kosinkadink/ComfyUI-VideoHelperSuite](https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite) | -| **Easy-Use** | Simplified workflow nodes | [yolain/ComfyUI-Easy-Use](https://github.com/yolain/ComfyUI-Easy-Use) | -| **ControlNet Aux** | ControlNet preprocessors | [Fannovel16/comfyui_controlnet_aux](https://github.com/Fannovel16/comfyui_controlnet_aux) | | **ComfyUI-GGUF** | GGUF model format support | [city96/ComfyUI-GGUF](https://github.com/city96/ComfyUI-GGUF) | -| **KJNodes** | Utility nodes collection | [kijai/ComfyUI-KJNodes](https://github.com/kijai/ComfyUI-KJNodes) | + ### Installing Additional Nodes @@ -191,11 +188,7 @@ comfyui_windows_setup/ │ ├── main.py │ ├── custom_nodes/ # Custom nodes │ │ ├── comfyui-manager/ -│ │ ├── comfyui-videohelpersuite/ -│ │ ├── comfyui-easy-use/ -│ │ ├── comfyui_controlnet_aux/ -│ │ ├── ComfyUI-GGUF/ -│ │ └── ComfyUI-KJNodes/ +│ │ └── ComfyUI-GGUF/ │ ├── models/ # Model files (download separately) │ │ ├── checkpoints/ │ │ ├── loras/ diff --git a/omni/comfyui_windows_setup/setup_portable_env.bat b/omni/comfyui_windows_setup/setup_portable_env.bat index eae0b41..4d65e0e 100644 --- a/omni/comfyui_windows_setup/setup_portable_env.bat +++ b/omni/comfyui_windows_setup/setup_portable_env.bat @@ -279,54 +279,6 @@ if exist comfyui-manager ( ) ) -REM --- ComfyUI-VideoHelperSuite --- -echo. -echo Installing ComfyUI-VideoHelperSuite... -if exist comfyui-videohelpersuite ( - echo ComfyUI-VideoHelperSuite already exists, skipping... -) else ( - git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git comfyui-videohelpersuite - if errorlevel 1 ( - echo WARNING: Failed to clone ComfyUI-VideoHelperSuite - ) else ( - cd comfyui-videohelpersuite - "%PYTHON_EXE%" -m pip install -r requirements.txt - cd .. - ) -) - -REM --- ComfyUI-Easy-Use --- -echo. -echo Installing ComfyUI-Easy-Use... -if exist comfyui-easy-use ( - echo ComfyUI-Easy-Use already exists, skipping... -) else ( - git clone https://github.com/yolain/ComfyUI-Easy-Use.git comfyui-easy-use - if errorlevel 1 ( - echo WARNING: Failed to clone ComfyUI-Easy-Use - ) else ( - cd comfyui-easy-use - "%PYTHON_EXE%" -m pip install -r requirements.txt - cd .. - ) -) - -REM --- comfyui_controlnet_aux --- -echo. -echo Installing comfyui_controlnet_aux... -if exist comfyui_controlnet_aux ( - echo comfyui_controlnet_aux already exists, skipping... -) else ( - git clone https://github.com/Fannovel16/comfyui_controlnet_aux.git - if errorlevel 1 ( - echo WARNING: Failed to clone comfyui_controlnet_aux - ) else ( - cd comfyui_controlnet_aux - "%PYTHON_EXE%" -m pip install -r requirements.txt - cd .. - ) -) - REM --- ComfyUI-GGUF --- echo. echo Installing ComfyUI-GGUF... @@ -354,22 +306,6 @@ if exist ComfyUI-GGUF ( ) ) -REM --- ComfyUI-KJNodes --- -echo. -echo Installing ComfyUI-KJNodes... -if exist ComfyUI-KJNodes ( - echo ComfyUI-KJNodes already exists, skipping... -) else ( - git clone https://github.com/kijai/ComfyUI-KJNodes.git - if errorlevel 1 ( - echo WARNING: Failed to clone ComfyUI-KJNodes - ) else ( - cd ComfyUI-KJNodes - "%PYTHON_EXE%" -m pip install -r requirements.txt - cd .. - ) -) - echo. echo Custom nodes installation complete. @@ -456,11 +392,7 @@ echo +-- python_embeded/ (Python environment) echo +-- ComfyUI/ (ComfyUI application) echo ^| +-- custom_nodes/ (Custom nodes) echo ^| +-- comfyui-manager -echo ^| +-- comfyui-videohelpersuite -echo ^| +-- comfyui-easy-use -echo ^| +-- comfyui_controlnet_aux echo ^| +-- ComfyUI-GGUF -echo ^| +-- ComfyUI-KJNodes echo +-- run_comfyui.bat (Launcher) echo +-- run_comfyui_lowvram.bat (Low VRAM Launcher) echo +-- run_comfyui_cpu.bat (CPU-only Launcher)