-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup_wizard.bat
More file actions
32 lines (28 loc) · 870 Bytes
/
Copy pathsetup_wizard.bat
File metadata and controls
32 lines (28 loc) · 870 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
@echo off
echo ===============================================
echo HiTem3D Setup Wizard
echo Created by: Geekatplay Studio by Vladimir Chopine
echo ===============================================
echo.
:: Find Python executable
set PYTHON_CMD=
if exist "..\..\python_embeded\python.exe" (
set PYTHON_CMD=..\..\python_embeded\python.exe
) else if exist "..\..\python\python.exe" (
set PYTHON_CMD=..\..\python\python.exe
) else if exist "..\..\..\python_embeded\python.exe" (
set PYTHON_CMD=..\..\..\python_embeded\python.exe
) else (
echo Error: Could not find ComfyUI Python executable
echo Please run setup_wizard.py manually with your Python path
echo Example: python setup_wizard.py
pause
exit /b 1
)
echo Found Python: %PYTHON_CMD%
echo.
:: Run setup wizard
"%PYTHON_CMD%" setup_wizard.py
echo.
echo Setup wizard completed!
pause