This commit is contained in:
colomi
2025-07-10 21:52:14 +08:00
commit 0893a7bf71
740 changed files with 103955 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
@echo off
set "requirements_txt=%~dp0\requirements.txt"
set "python_exec=..\..\..\python_embeded\python.exe"
echo Installing ComfyUI's ControlNet Auxiliary Preprocessors..
if exist "%python_exec%" (
echo Installing with ComfyUI Portable
for /f "delims=" %%i in (%requirements_txt%) do (
%python_exec% -s -m pip install "%%i"
)
) else (
echo Installing with system Python
for /f "delims=" %%i in (%requirements_txt%) do (
pip install "%%i"
)
)
pause