Instructions to use UmeAiRT/ComfyUI-Auto-Installer-Assets with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use UmeAiRT/ComfyUI-Auto-Installer-Assets with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("UmeAiRT/ComfyUI-Auto-Installer-Assets", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
| @echo off | |
| setlocal enabledelayedexpansion | |
| set "comfyUIPath=%CD%" | |
| :check_folder | |
| if exist "%comfyUIPath%\ComfyUI" ( | |
| echo ComfyUI folder detected | |
| ) else if exist "%comfyUIPath%\ComfyUI_windows_portable" ( | |
| cd ComfyUI_windows_portable | |
| echo ComfyUI folder detected | |
| ) else ( | |
| echo ComfyUI folder not detected | |
| pause | |
| exit /b | |
| ) | |
| echo [33mUpdate ComfyUI[0m | |
| cd update | |
| ..\python_embeded\python.exe -m pip install --upgrade pip | |
| ..\python_embeded\python.exe .\update.py ..\ComfyUI\ | |
| if exist update_new.py ( | |
| move /y update_new.py update.py | |
| echo Running updater again since it got updated. | |
| ..\python_embeded\python.exe .\update.py ..\ComfyUI\ --skip_self_update | |
| ) | |
| :CHOOSE_CLEAN | |
| REM Ask user if they want to download FLUX SCHNELL Model | |
| echo [33mDo you want to do a clean install? (all currently present custom nodes are deleted)[0m | |
| echo [32mA) Yes[0m | |
| echo [32mB) No[0m | |
| set /p "CHOOSE_CLEAN=Enter your choice (A or B) and press Enter: " | |
| if /i "%CHOOSE_CLEAN%"=="A" ( | |
| del /s /q "%comfyUIPath%\ComfyUI\custom_nodes\*.*" >nul 2>&1 | |
| for /d %%i in ("%comfyUIPath%\ComfyUI\custom_nodes\*") do rmdir /s /q "%%i" >nul 2>&1 | |
| ) else if /i "%CHOOSE_CLEAN%"=="B" ( | |
| set "CHOOSE_CLEANL=no" | |
| ) else ( | |
| echo [31mInvalid choice. Please enter A or B.[0m | |
| goto CHOOSE_CLEAN | |
| ) | |
| cd .. | |
| cd ComfyUI\custom_nodes | |
| REM Clone ComfyUI-Manager | |
| echo [33mInstalling ComfyUI-Manager...[0m | |
| git clone https://github.com/ltdrdata/ComfyUI-Manager.git >nul 2>&1 | |
| echo [33mInstalling additional nodes...[0m | |
| echo - Impact-Pack | |
| git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack >nul 2>&1 | |
| cd ComfyUI-Impact-Pack | |
| git clone https://github.com/ltdrdata/ComfyUI-Impact-Subpack impact_subpack >nul 2>&1 | |
| ..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1 | |
| ..\..\..\python_embeded\python.exe -s -m pip install ultralytics --no-warn-script-location >nul 2>&1 | |
| cd .. | |
| echo - GGUF | |
| git clone https://github.com/city96/ComfyUI-GGUF >nul 2>&1 | |
| cd ComfyUI-GGUF | |
| ..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1 | |
| cd .. | |
| echo - mxToolkit | |
| git clone https://github.com/Smirnov75/ComfyUI-mxToolkit >nul 2>&1 | |
| echo - Custom-Scripts | |
| git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts >nul 2>&1 | |
| echo - KJNodes | |
| git clone https://github.com/kijai/ComfyUI-KJNodes >nul 2>&1 | |
| cd ComfyUI-KJNodes | |
| ..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1 | |
| cd .. | |
| echo - ComfyUI-VideoHelperSuite | |
| git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite >nul 2>&1 | |
| cd ComfyUI-VideoHelperSuite | |
| ..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1 | |
| cd .. | |
| echo - ComfyUI-Frame-Interpolation | |
| git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation >nul 2>&1 | |
| cd ComfyUI-Frame-Interpolation | |
| ..\..\..\python_embeded\python.exe -s -m pip install -r requirements-with-cupy.txt --no-warn-script-location >nul 2>&1 | |
| cd .. | |
| echo - rgthree | |
| git clone https://github.com/rgthree/rgthree-comfy >nul 2>&1 | |
| cd rgthree-comfy | |
| ..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1 | |
| cd .. | |
| echo - ComfyUI-WanVideoWrapper | |
| git clone https://github.com/kijai/ComfyUI-HunyuanVideoWrapper >nul 2>&1 | |
| cd ComfyUI-HunyuanVideoWrapper | |
| ..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1 | |
| cd .. | |
| echo - ComfyUI-TeaCache | |
| git clone https://github.com/welltop-cn/ComfyUI-TeaCache >nul 2>&1 | |
| cd ComfyUI-TeaCache | |
| ..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1 | |
| cd .. | |
| echo - ComfyUI-HunyuanVideoMultiLora | |
| git clone https://github.com/facok/ComfyUI-HunyuanVideoMultiLora >nul 2>&1 | |
| echo [33mInstallation complete[0m | |
| pause |