Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions omni/comfyui_windows_setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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/
Expand Down
68 changes: 0 additions & 68 deletions omni/comfyui_windows_setup/setup_portable_env.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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...
Expand Down Expand Up @@ -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.

Expand Down Expand Up @@ -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)
Expand Down