mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-25 01:34:38 +01:00
26 lines
563 B
Batchfile
26 lines
563 B
Batchfile
@echo off
|
|
|
|
echo. & echo "Stable Diffusion UI - v2.5" & echo.
|
|
|
|
set PATH=C:\Windows\System32;%PATH%
|
|
|
|
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
|
|
call installer\installer\start.bat
|