Upload 3 files
Browse files- old/UmeAiRT-FLUX-Missing_nodes.bat +114 -0
- old/UmeAiRT-Missing_nodes.bat +172 -0
- old/UmeAiRT-WAN2.1-Missing_nodes.bat +153 -0
old/UmeAiRT-FLUX-Missing_nodes.bat
ADDED
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@echo off
|
2 |
+
setlocal enabledelayedexpansion
|
3 |
+
|
4 |
+
set "comfyUIPath=%CD%"
|
5 |
+
|
6 |
+
:check_folder
|
7 |
+
if exist "%comfyUIPath%\ComfyUI" (
|
8 |
+
echo ComfyUI folder detected
|
9 |
+
) else if exist "%comfyUIPath%\ComfyUI_windows_portable" (
|
10 |
+
cd ComfyUI_windows_portable
|
11 |
+
echo ComfyUI folder detected
|
12 |
+
) else (
|
13 |
+
echo ComfyUI folder not detected
|
14 |
+
pause
|
15 |
+
exit /b
|
16 |
+
)
|
17 |
+
|
18 |
+
echo [33mUpdate ComfyUI[0m
|
19 |
+
cd update
|
20 |
+
..\python_embeded\python.exe -m pip install --upgrade pip
|
21 |
+
..\python_embeded\python.exe .\update.py ..\ComfyUI\
|
22 |
+
if exist update_new.py (
|
23 |
+
move /y update_new.py update.py
|
24 |
+
echo Running updater again since it got updated.
|
25 |
+
..\python_embeded\python.exe .\update.py ..\ComfyUI\ --skip_self_update
|
26 |
+
)
|
27 |
+
|
28 |
+
cd ..
|
29 |
+
cd ComfyUI\custom_nodes
|
30 |
+
|
31 |
+
REM Clone ComfyUI-Manager
|
32 |
+
echo [33mInstalling ComfyUI-Manager...[0m
|
33 |
+
git clone https://github.com/ltdrdata/ComfyUI-Manager.git >nul 2>&1
|
34 |
+
echo [33mInstalling additional nodes...[0m
|
35 |
+
echo - Impact-Pack
|
36 |
+
git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack >nul 2>&1
|
37 |
+
cd ComfyUI-Impact-Pack
|
38 |
+
git clone https://github.com/ltdrdata/ComfyUI-Impact-Subpack impact_subpack >nul 2>&1
|
39 |
+
..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1
|
40 |
+
..\..\..\python_embeded\python.exe -s -m pip install ultralytics --no-warn-script-location >nul 2>&1
|
41 |
+
cd ..
|
42 |
+
|
43 |
+
echo - WAS-Suite
|
44 |
+
git clone https://github.com/WASasquatch/was-node-suite-comfyui >nul 2>&1
|
45 |
+
cd was-node-suite-comfyui
|
46 |
+
..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1
|
47 |
+
cd ..
|
48 |
+
|
49 |
+
echo - GGUF
|
50 |
+
git clone https://github.com/city96/ComfyUI-GGUF >nul 2>&1
|
51 |
+
cd ComfyUI-GGUF
|
52 |
+
..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1
|
53 |
+
cd ..
|
54 |
+
|
55 |
+
echo - Custom-Scripts
|
56 |
+
git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts >nul 2>&1
|
57 |
+
|
58 |
+
echo - UltimateSDUpscale
|
59 |
+
git clone https://github.com/ssitu/ComfyUI_UltimateSDUpscale --recursive >nul 2>&1
|
60 |
+
|
61 |
+
echo - rgthree
|
62 |
+
git clone https://github.com/rgthree/rgthree-comfy >nul 2>&1
|
63 |
+
cd rgthree-comfy
|
64 |
+
..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1
|
65 |
+
cd ..
|
66 |
+
|
67 |
+
echo - Florence2
|
68 |
+
git clone https://github.com/kijai/ComfyUI-Florence2 >nul 2>&1
|
69 |
+
cd ComfyUI-Florence2
|
70 |
+
..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1
|
71 |
+
cd ..
|
72 |
+
|
73 |
+
echo - KJNodes
|
74 |
+
git clone https://github.com/kijai/ComfyUI-KJNodes >nul 2>&1
|
75 |
+
cd ComfyUI-KJNodes
|
76 |
+
..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1
|
77 |
+
cd ..
|
78 |
+
|
79 |
+
echo - ComfyUI-Image-Saver
|
80 |
+
git clone https://github.com/alexopus/ComfyUI-Image-Saver >nul 2>&1
|
81 |
+
cd ComfyUI-Image-Saver
|
82 |
+
..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1
|
83 |
+
cd ..
|
84 |
+
|
85 |
+
echo - ComfyUI-RMBG
|
86 |
+
git clone https://github.com/1038lab/ComfyUI-RMBG >nul 2>&1
|
87 |
+
cd ComfyUI-RMBG
|
88 |
+
..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1
|
89 |
+
cd ..
|
90 |
+
|
91 |
+
echo - X-Flux
|
92 |
+
git clone https://github.com/XLabs-AI/x-flux-comfyui >nul 2>&1
|
93 |
+
cd x-flux-comfyui
|
94 |
+
..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1
|
95 |
+
cd ..
|
96 |
+
|
97 |
+
echo - mxToolkit
|
98 |
+
git clone https://github.com/Smirnov75/ComfyUI-mxToolkit >nul 2>&1
|
99 |
+
|
100 |
+
echo - Comfyroll
|
101 |
+
git clone https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes >nul 2>&1
|
102 |
+
|
103 |
+
echo - PulID
|
104 |
+
git clone https://github.com/sipie800/ComfyUI-PuLID-Flux-Enhanced >nul 2>&1
|
105 |
+
cd ..\..\python_embeded
|
106 |
+
curl -L -o "insightface-0.7.3-cp311-cp311-win_amd64.whl" https://github.com/Gourieff/Assets/raw/main/Insightface/insightface-0.7.3-cp311-cp311-win_amd64.whl >nul 2>&1
|
107 |
+
.\python.exe -m pip install --use-pep517 facexlib >nul 2>&1
|
108 |
+
.\python.exe -m pip install git+https://github.com/rodjjo/filterpy.git >nul 2>&1
|
109 |
+
.\python.exe -m pip install onnxruntime==1.19.2 onnxruntime-gpu==1.15.1 insightface-0.7.3-cp311-cp311-win_amd64.whl >nul 2>&1
|
110 |
+
cd ..
|
111 |
+
cd ComfyUI\custom_nodes\ComfyUI-PuLID-Flux-Enhanced
|
112 |
+
..\..\..\python_embeded\python.exe -s -m pip install -r requirements.txt --no-warn-script-location >nul 2>&1
|
113 |
+
cd ..
|
114 |
+
|
old/UmeAiRT-Missing_nodes.bat
ADDED
@@ -0,0 +1,172 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@echo off
|
2 |
+
setlocal enabledelayedexpansion
|
3 |
+
|
4 |
+
set "basePath=%CD%"
|
5 |
+
set "comfyPath=%basePath%\ComfyUI"
|
6 |
+
set "pythonPath=%basePath%\python_embeded"
|
7 |
+
set "customNodesPath=%comfyPath%\custom_nodes"
|
8 |
+
|
9 |
+
if not exist "%basePath%\logs" mkdir "%basePath%\logs"
|
10 |
+
|
11 |
+
:check_folder
|
12 |
+
if exist "%basePath%\ComfyUI" (
|
13 |
+
echo ComfyUI folder detected
|
14 |
+
set "comfyPath=%basePath%\ComfyUI"
|
15 |
+
if exist "%basePath%\python_embeded" (
|
16 |
+
echo Python folder detected
|
17 |
+
set "pythonPath=%basePath%\python_embeded"
|
18 |
+
) else (
|
19 |
+
echo Python folder not detected, give Python folder path :
|
20 |
+
pause
|
21 |
+
)
|
22 |
+
) else if exist "%basePath%\ComfyUI_windows_portable" (
|
23 |
+
set "comfyPath=%basePath%\ComfyUI_windows_portable\ComfyUI"
|
24 |
+
set "pythonPath=%basePath%\ComfyUI_windows_portable\python_embeded"
|
25 |
+
echo ComfyUI folder detected
|
26 |
+
) else (
|
27 |
+
echo ComfyUI folder not detected, give ComfyUi folder path :
|
28 |
+
set /p "comfyPath=Path: "
|
29 |
+
echo Python folder not detected, give Python folder path :
|
30 |
+
set /p "pythonPath=Path: "
|
31 |
+
)
|
32 |
+
|
33 |
+
set "customNodesPath=%comfyPath%\custom_nodes"
|
34 |
+
|
35 |
+
echo [33mUpdate ComfyUI[0m
|
36 |
+
if exist "%basePath%\update" (
|
37 |
+
"%pythonPath%\python.exe" -m pip install --upgrade pip >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
38 |
+
"%pythonPath%\python.exe" "%basePath%\update\update.py" "%basePath%\ComfyUI" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
39 |
+
if exist update_new.py (
|
40 |
+
move /y update_new.py update.py
|
41 |
+
echo Running updater again since it got updated.
|
42 |
+
"%pythonPath%\python.exe" "%basePath%\update\update.py" "%basePath%\ComfyUI" --skip_self_update >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
43 |
+
)
|
44 |
+
) else if exist "%basePath%\ComfyUI_windows_portable\update" (
|
45 |
+
"%pythonPath%\python.exe" -m pip install --upgrade pip >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
46 |
+
"%pythonPath%\python.exe" "%basePath%\ComfyUI_windows_portable\update\update.py" "%comfyPath%" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
47 |
+
if exist update_new.py (
|
48 |
+
move /y update_new.py update.py
|
49 |
+
echo Running updater again since it got updated.
|
50 |
+
"%pythonPath%\python.exe" "%basePath%\ComfyUI_windows_portable\update\update.py" "%comfyPath%" --skip_self_update >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
51 |
+
)
|
52 |
+
) else (
|
53 |
+
git --git-dir="%comfyPath%" --work-tree="%comfyPath%" pull >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
54 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%comfyPath%/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
55 |
+
)
|
56 |
+
|
57 |
+
:CHOOSE_CLEAN
|
58 |
+
REM Ask user if they want to download FLUX SCHNELL Model
|
59 |
+
echo [33mDo you want to do a clean install? (all currently present custom nodes are deleted)[0m
|
60 |
+
echo [32mA) Yes[0m
|
61 |
+
echo [32mB) No[0m
|
62 |
+
set /p "CHOOSE_CLEAN=Enter your choice (A or B) and press Enter: "
|
63 |
+
|
64 |
+
if /i "%CHOOSE_CLEAN%"=="A" (
|
65 |
+
del /s /q "%customNodesPath%\*.*" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
66 |
+
for /d %%i in ("%customNodesPath%\*") do rmdir /s /q "%%i" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
67 |
+
) else if /i "%CHOOSE_CLEAN%"=="B" (
|
68 |
+
set "CHOOSE_CLEANL=no"
|
69 |
+
) else (
|
70 |
+
echo [31mInvalid choice. Please enter A or B.[0m
|
71 |
+
goto CHOOSE_CLEAN
|
72 |
+
)
|
73 |
+
|
74 |
+
REM Clone ComfyUI-Manager
|
75 |
+
echo [33mInstalling ComfyUI-Manager...[0m
|
76 |
+
git clone https://github.com/ltdrdata/ComfyUI-Manager.git "%customNodesPath%/ComfyUI-Manager" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
77 |
+
|
78 |
+
echo [33mInstalling additional nodes...[0m
|
79 |
+
|
80 |
+
echo - Impact-Pack
|
81 |
+
git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack "%customNodesPath%/ComfyUI-Impact-Pack" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
82 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Impact-Pack/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
83 |
+
git clone https://github.com/ltdrdata/ComfyUI-Impact-Subpack "%customNodesPath%/ComfyUI-Impact-Pack/impact_subpack" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
84 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Impact-Pack/impact_subpack/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
85 |
+
"%pythonPath%\python.exe" -s -m pip install ultralytics --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
86 |
+
|
87 |
+
echo - GGUF
|
88 |
+
git clone https://github.com/city96/ComfyUI-GGUF "%customNodesPath%/ComfyUI-GGUF" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
89 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-GGUF/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
90 |
+
|
91 |
+
echo - mxToolkit
|
92 |
+
git clone https://github.com/Smirnov75/ComfyUI-mxToolkit "%customNodesPath%/ComfyUI-mxToolkit" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
93 |
+
|
94 |
+
echo - Custom-Scripts
|
95 |
+
git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts "%customNodesPath%/ComfyUI-Custom-Scripts" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
96 |
+
|
97 |
+
echo - KJNodes
|
98 |
+
git clone https://github.com/kijai/ComfyUI-KJNodes "%customNodesPath%/ComfyUI-KJNodes" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
99 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-KJNodes/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
100 |
+
|
101 |
+
echo - VideoHelperSuite
|
102 |
+
git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite "%customNodesPath%/ComfyUI-VideoHelperSuite" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
103 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-VideoHelperSuite/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
104 |
+
|
105 |
+
echo - Frame-Interpolation
|
106 |
+
git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation "%customNodesPath%/ComfyUI-Frame-Interpolation" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
107 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Frame-Interpolation/requirements-with-cupy.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
108 |
+
|
109 |
+
echo - rgthree
|
110 |
+
git clone https://github.com/rgthree/rgthree-comfy "%customNodesPath%/rgthree-comfy" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
111 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/rgthree-comfy/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
112 |
+
|
113 |
+
echo - Easy-Use
|
114 |
+
git clone https://github.com/yolain/ComfyUI-Easy-Use "%customNodesPath%/ComfyUI-Easy-Use" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
115 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Easy-Use/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
116 |
+
|
117 |
+
echo - PuLID_Flux_ll
|
118 |
+
git clone https://github.com/lldacing/ComfyUI_PuLID_Flux_ll "%customNodesPath%/ComfyUI_PuLID_Flux_ll" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
119 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI_PuLID_Flux_ll/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
120 |
+
curl -L -o "%pythonPath%\insightface-0.7.3-cp310-cp310-win_amd64.whl" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/others/insightface-0.7.3-cp310-cp310-win_amd64.whl?download=true >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
121 |
+
curl -L -o "%pythonPath%\insightface-0.7.3-cp311-cp311-win_amd64.whl" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/others/insightface-0.7.3-cp311-cp311-win_amd64.whl?download=true >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
122 |
+
curl -L -o "%pythonPath%\insightface-0.7.3-cp312-cp312-win_amd64.whl" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/others/insightface-0.7.3-cp312-cp312-win_amd64.whl?download=true >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
123 |
+
"%pythonPath%\python.exe" -m pip install --use-pep517 facexlib >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
124 |
+
"%pythonPath%\python.exe" -m pip install git+https://github.com/rodjjo/filterpy.git >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
125 |
+
"%pythonPath%\python.exe" -m pip install onnxruntime==1.19.2 onnxruntime-gpu==1.15.1 "%pythonPath%\insightface-0.7.3-cp310-cp310-win_amd64.whl" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
126 |
+
"%pythonPath%\python.exe" -m pip install onnxruntime==1.19.2 onnxruntime-gpu==1.15.1 "%pythonPath%\insightface-0.7.3-cp311-cp311-win_amd64.whl" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
127 |
+
"%pythonPath%\python.exe" -m pip install onnxruntime==1.19.2 onnxruntime-gpu==1.17.1 "%pythonPath%\insightface-0.7.3-cp312-cp312-win_amd64.whl" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
128 |
+
|
129 |
+
echo - HunyuanVideoMultiLora
|
130 |
+
git clone https://github.com/facok/ComfyUI-HunyuanVideoMultiLora "%customNodesPath%/ComfyUI-HunyuanVideoMultiLora" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
131 |
+
|
132 |
+
echo - was-node-suite-comfyui
|
133 |
+
git clone https://github.com/WASasquatch/was-node-suite-comfyui "%customNodesPath%/was-node-suite-comfyui" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
134 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/was-node-suite-comfyui/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
135 |
+
|
136 |
+
echo - Florence2
|
137 |
+
git clone https://github.com/kijai/ComfyUI-Florence2 "%customNodesPath%/ComfyUI-Florence2">> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
138 |
+
"%pythonPath%\python.exe" -m pip install transformers==4.49.0 --upgrade >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
139 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Florence2/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
140 |
+
|
141 |
+
echo - Upscaler-Tensorrt
|
142 |
+
git clone https://github.com/yuvraj108c/ComfyUI-Upscaler-Tensorrt "%customNodesPath%/ComfyUI-Upscaler-Tensorrt" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
143 |
+
"%pythonPath%\python.exe" -s -m pip install wheel-stub >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
144 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Upscaler-Tensorrt/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
145 |
+
|
146 |
+
echo - MultiGPU
|
147 |
+
git clone https://github.com/pollockjj/ComfyUI-MultiGPU "%customNodesPath%/ComfyUI-MultiGPU" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
148 |
+
|
149 |
+
echo - WanStartEndFramesNative
|
150 |
+
git clone https://github.com/Flow-two/ComfyUI-WanStartEndFramesNative "%customNodesPath%/ComfyUI-WanStartEndFramesNative" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
151 |
+
|
152 |
+
echo - Image-Saver
|
153 |
+
git clone https://github.com/alexopus/ComfyUI-Image-Saver "%customNodesPath%/ComfyUI-Image-Saver" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
154 |
+
"%basePath%\python_embeded\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Image-Saver/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
155 |
+
|
156 |
+
echo - UltimateSDUpscale
|
157 |
+
git clone https://github.com/ssitu/ComfyUI_UltimateSDUpscale "%customNodesPath%/ComfyUI_UltimateSDUpscale" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
158 |
+
|
159 |
+
echo - Controlnet_AUX
|
160 |
+
git clone https://github.com/Fannovel16/comfyui_controlnet_aux "%customNodesPath%/comfyui_controlnet_aux" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
161 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/comfyui_controlnet_aux/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
162 |
+
|
163 |
+
echo - X-Flux
|
164 |
+
git clone https://github.com/XLabs-AI/x-flux-comfyui "%customNodesPath%/x-flux-comfyui" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
165 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/x-flux-comfyui/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
166 |
+
|
167 |
+
echo - RMBG
|
168 |
+
git clone https://github.com/1038lab/ComfyUI-RMBG "%customNodesPath%/ComfyUI-RMBG" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
169 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-RMBG/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
170 |
+
|
171 |
+
echo [33mInstallation complete[0m
|
172 |
+
pause
|
old/UmeAiRT-WAN2.1-Missing_nodes.bat
ADDED
@@ -0,0 +1,153 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@echo off
|
2 |
+
setlocal enabledelayedexpansion
|
3 |
+
|
4 |
+
set "basePath=%CD%"
|
5 |
+
set "comfyPath=%basePath%\ComfyUI"
|
6 |
+
set "pythonPath=%basePath%\python_embeded"
|
7 |
+
set "customNodesPath=%comfyPath%\custom_nodes"
|
8 |
+
|
9 |
+
if not exist "%basePath%\logs" mkdir "%basePath%\logs"
|
10 |
+
|
11 |
+
:check_folder
|
12 |
+
if exist "%basePath%\ComfyUI" (
|
13 |
+
echo ComfyUI folder detected
|
14 |
+
set "comfyPath=%basePath%\ComfyUI"
|
15 |
+
if exist "%basePath%\python_embeded" (
|
16 |
+
echo Python folder detected
|
17 |
+
set "pythonPath=%basePath%\python_embeded"
|
18 |
+
) else (
|
19 |
+
echo Python folder not detected, give Python folder path :
|
20 |
+
pause
|
21 |
+
)
|
22 |
+
) else if exist "%basePath%\ComfyUI_windows_portable" (
|
23 |
+
set "comfyPath=%basePath%\ComfyUI_windows_portable\ComfyUI"
|
24 |
+
set "pythonPath=%basePath%\ComfyUI_windows_portable\python_embeded"
|
25 |
+
echo ComfyUI folder detected
|
26 |
+
) else (
|
27 |
+
echo ComfyUI folder not detected, give ComfyUi folder path :
|
28 |
+
set /p "comfyPath=Path: "
|
29 |
+
echo Python folder not detected, give Python folder path :
|
30 |
+
set /p "pythonPath=Path: "
|
31 |
+
)
|
32 |
+
|
33 |
+
set "customNodesPath=%comfyPath%\custom_nodes"
|
34 |
+
|
35 |
+
echo [33mUpdate ComfyUI[0m
|
36 |
+
if exist "%basePath%\update" (
|
37 |
+
"%pythonPath%\python.exe" -m pip install --upgrade pip >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
38 |
+
"%pythonPath%\python.exe" "%basePath%\update\update.py" "%basePath%\ComfyUI" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
39 |
+
if exist update_new.py (
|
40 |
+
move /y update_new.py update.py
|
41 |
+
echo Running updater again since it got updated.
|
42 |
+
"%pythonPath%\python.exe" "%basePath%\update\update.py" "%basePath%\ComfyUI" --skip_self_update >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
43 |
+
)
|
44 |
+
) else if exist "%basePath%\ComfyUI_windows_portable\update" (
|
45 |
+
"%pythonPath%\python.exe" -m pip install --upgrade pip >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
46 |
+
"%pythonPath%\python.exe" "%basePath%\ComfyUI_windows_portable\update\update.py" "%comfyPath%" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
47 |
+
if exist update_new.py (
|
48 |
+
move /y update_new.py update.py
|
49 |
+
echo Running updater again since it got updated.
|
50 |
+
"%pythonPath%\python.exe" "%basePath%\ComfyUI_windows_portable\update\update.py" "%comfyPath%" --skip_self_update >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
51 |
+
)
|
52 |
+
) else (
|
53 |
+
git --git-dir="%comfyPath%" --work-tree="%comfyPath%" pull >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
54 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%comfyPath%/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
55 |
+
)
|
56 |
+
|
57 |
+
:CHOOSE_CLEAN
|
58 |
+
REM Ask user if they want to download FLUX SCHNELL Model
|
59 |
+
echo [33mDo you want to do a clean install? (all currently present custom nodes are deleted)[0m
|
60 |
+
echo [32mA) Yes[0m
|
61 |
+
echo [32mB) No[0m
|
62 |
+
set /p "CHOOSE_CLEAN=Enter your choice (A or B) and press Enter: "
|
63 |
+
|
64 |
+
if /i "%CHOOSE_CLEAN%"=="A" (
|
65 |
+
del /s /q "%customNodesPath%\*.*" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
66 |
+
for /d %%i in ("%customNodesPath%\*") do rmdir /s /q "%%i" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
67 |
+
) else if /i "%CHOOSE_CLEAN%"=="B" (
|
68 |
+
set "CHOOSE_CLEANL=no"
|
69 |
+
) else (
|
70 |
+
echo [31mInvalid choice. Please enter A or B.[0m
|
71 |
+
goto CHOOSE_CLEAN
|
72 |
+
)
|
73 |
+
|
74 |
+
REM Clone ComfyUI-Manager
|
75 |
+
echo [33mInstalling ComfyUI-Manager...[0m
|
76 |
+
git clone https://github.com/ltdrdata/ComfyUI-Manager.git "%customNodesPath%/ComfyUI-Manager" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
77 |
+
|
78 |
+
echo [33mInstalling additional nodes...[0m
|
79 |
+
|
80 |
+
echo - Impact-Pack
|
81 |
+
git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack "%customNodesPath%/ComfyUI-Impact-Pack" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
82 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Impact-Pack/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
83 |
+
git clone https://github.com/ltdrdata/ComfyUI-Impact-Subpack "%customNodesPath%/ComfyUI-Impact-Pack/impact_subpack" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
84 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Impact-Pack/impact_subpack/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
85 |
+
"%pythonPath%\python.exe" -s -m pip install ultralytics --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
86 |
+
|
87 |
+
echo - GGUF
|
88 |
+
git clone https://github.com/city96/ComfyUI-GGUF "%customNodesPath%/ComfyUI-GGUF" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
89 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-GGUF/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
90 |
+
|
91 |
+
echo - mxToolkit
|
92 |
+
git clone https://github.com/Smirnov75/ComfyUI-mxToolkit "%customNodesPath%/ComfyUI-mxToolkit" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
93 |
+
|
94 |
+
echo - Custom-Scripts
|
95 |
+
git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts "%customNodesPath%/ComfyUI-Custom-Scripts" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
96 |
+
|
97 |
+
echo - KJNodes
|
98 |
+
git clone https://github.com/kijai/ComfyUI-KJNodes "%customNodesPath%/ComfyUI-KJNodes" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
99 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-KJNodes/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
100 |
+
|
101 |
+
echo - VideoHelperSuite
|
102 |
+
git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite "%customNodesPath%/ComfyUI-VideoHelperSuite" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
103 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-VideoHelperSuite/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
104 |
+
|
105 |
+
echo - Frame-Interpolation
|
106 |
+
git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation "%customNodesPath%/ComfyUI-Frame-Interpolation" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
107 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Frame-Interpolation/requirements-with-cupy.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
108 |
+
|
109 |
+
echo - rgthree
|
110 |
+
git clone https://github.com/rgthree/rgthree-comfy "%customNodesPath%/rgthree-comfy" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
111 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/rgthree-comfy/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
112 |
+
|
113 |
+
echo - Easy-Use
|
114 |
+
git clone https://github.com/yolain/ComfyUI-Easy-Use "%customNodesPath%/ComfyUI-Easy-Use" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
115 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Easy-Use/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
116 |
+
|
117 |
+
echo - PuLID_Flux_ll
|
118 |
+
git clone https://github.com/lldacing/ComfyUI_PuLID_Flux_ll "%customNodesPath%/ComfyUI_PuLID_Flux_ll" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
119 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI_PuLID_Flux_ll/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
120 |
+
curl -L -o "%pythonPath%\insightface-0.7.3-cp310-cp310-win_amd64.whl" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/others/insightface-0.7.3-cp310-cp310-win_amd64.whl?download=true >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
121 |
+
curl -L -o "%pythonPath%\insightface-0.7.3-cp311-cp311-win_amd64.whl" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/others/insightface-0.7.3-cp311-cp311-win_amd64.whl?download=true >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
122 |
+
curl -L -o "%pythonPath%\insightface-0.7.3-cp312-cp312-win_amd64.whl" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/others/insightface-0.7.3-cp312-cp312-win_amd64.whl?download=true >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
123 |
+
"%pythonPath%\python.exe" -m pip install --use-pep517 facexlib >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
124 |
+
"%pythonPath%\python.exe" -m pip install git+https://github.com/rodjjo/filterpy.git >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
125 |
+
"%pythonPath%\python.exe" -m pip install onnxruntime==1.19.2 onnxruntime-gpu==1.15.1 "%pythonPath%\insightface-0.7.3-cp310-cp310-win_amd64.whl" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
126 |
+
"%pythonPath%\python.exe" -m pip install onnxruntime==1.19.2 onnxruntime-gpu==1.15.1 "%pythonPath%\insightface-0.7.3-cp311-cp311-win_amd64.whl" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
127 |
+
"%pythonPath%\python.exe" -m pip install onnxruntime==1.19.2 onnxruntime-gpu==1.17.1 "%pythonPath%\insightface-0.7.3-cp312-cp312-win_amd64.whl" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
128 |
+
|
129 |
+
echo - HunyuanVideoMultiLora
|
130 |
+
git clone https://github.com/facok/ComfyUI-HunyuanVideoMultiLora "%customNodesPath%/ComfyUI-HunyuanVideoMultiLora" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
131 |
+
|
132 |
+
echo - was-node-suite-comfyui
|
133 |
+
git clone https://github.com/WASasquatch/was-node-suite-comfyui "%customNodesPath%/was-node-suite-comfyui" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
134 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/was-node-suite-comfyui/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
135 |
+
|
136 |
+
echo - Florence2
|
137 |
+
git clone https://github.com/kijai/ComfyUI-Florence2 "%customNodesPath%/ComfyUI-Florence2">> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
138 |
+
"%pythonPath%\python.exe" -m pip install transformers==4.49.0 --upgrade >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
139 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Florence2/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
140 |
+
|
141 |
+
echo - Upscaler-Tensorrt
|
142 |
+
git clone https://github.com/yuvraj108c/ComfyUI-Upscaler-Tensorrt "%customNodesPath%/ComfyUI-Upscaler-Tensorrt" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
143 |
+
"%pythonPath%\python.exe" -s -m pip install wheel-stub >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
144 |
+
"%pythonPath%\python.exe" -s -m pip install -r "%customNodesPath%/ComfyUI-Upscaler-Tensorrt/requirements.txt" --no-warn-script-location >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
145 |
+
|
146 |
+
echo - MultiGPU
|
147 |
+
git clone https://github.com/pollockjj/ComfyUI-MultiGPU "%customNodesPath%/ComfyUI-MultiGPU" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
|
148 |
+
|
149 |
+
echo - WanStartEndFramesNative
|
150 |
+
git clone https://github.com/Flow-two/ComfyUI-WanStartEndFramesNative "%customNodesPath%/ComfyUI-WanStartEndFramesNative" >> "%installPath%\logs\install.txt" 2>&1
|
151 |
+
|
152 |
+
echo [33mInstallation complete[0m
|
153 |
+
pause
|