2022-10-03 19:28:36 +02:00
|
|
|
@echo off
|
|
|
|
|
2022-10-03 20:01:46 +02:00
|
|
|
echo. & echo "Stable Diffusion UI - v2.5" & echo.
|
2022-10-03 19:28:36 +02:00
|
|
|
|
|
|
|
set PATH=C:\Windows\System32;%PATH%
|
|
|
|
|
2022-10-03 20:00:00 +02:00
|
|
|
set START_CMD_FILENAME=Start Stable Diffusion UI.cmd
|
2022-10-03 19:28:36 +02:00
|
|
|
set SD_BASE_DIR=%cd%
|
|
|
|
|
|
|
|
@rem Confirm or change the installation dir
|
|
|
|
call installer\bootstrap\check-install-dir.bat
|
|
|
|
|
|
|
|
@rem set the vars again, if the installer dir has changed
|
|
|
|
set SD_BASE_DIR=%cd%
|
|
|
|
|
|
|
|
echo Working in %SD_BASE_DIR%
|
|
|
|
|
|
|
|
@rem Setup the packages required for the installer
|
|
|
|
call installer\bootstrap\bootstrap.bat
|
|
|
|
|
|
|
|
@rem Test the bootstrap
|
|
|
|
call git --version
|
|
|
|
call python --version
|
|
|
|
|
|
|
|
@rem Download the rest of the installer and UI
|
2022-10-04 13:03:54 +02:00
|
|
|
call installer\installer\start.bat
|