-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall.bat
More file actions
39 lines (34 loc) · 747 Bytes
/
install.bat
File metadata and controls
39 lines (34 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@echo off
echo Installing Koukoutu ComfyUI Node dependencies...
echo.
REM Check if we're in a Python environment
python --version >nul 2>&1
if errorlevel 1 (
echo Python is not available. Please ensure Python is installed and in PATH.
pause
exit /b 1
)
echo Installing required packages...
pip install requests>=2.28.0
if errorlevel 1 (
echo Failed to install requests
pause
exit /b 1
)
pip install Pillow>=9.0.0
if errorlevel 1 (
echo Failed to install Pillow
pause
exit /b 1
)
pip install numpy>=1.21.0
if errorlevel 1 (
echo Failed to install numpy
pause
exit /b 1
)
echo.
echo All dependencies installed successfully!
echo You can now restart ComfyUI to use the Koukoutu nodes.
echo.
pause