Spaces:
Configuration error
Configuration error
File size: 759 Bytes
0ce60a9 | 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 | @echo off
cd /d "%~dp0"
if exist StableSwarmUI (
echo StableSwarmUI is already installed in this folder. If this is incorrect, delete the 'StableSwarmUI' folder and try again.
pause
exit
)
if exist StableSwarmUI.sln (
echo StableSwarmUI is already installed in this folder. If this is incorrect, delete 'StableSwarmUI.sln' and try again.
pause
exit
)
winget install Microsoft.DotNet.SDK.8 --accept-source-agreements --accept-package-agreements
winget install --id Git.Git -e --source winget --accept-source-agreements --accept-package-agreements
git clone https://github.com/Stability-AI/StableSwarmUI
cd StableSwarmUI
call .\make-shortcut.bat
call .\launch-windows.bat --launch_mode webinstall
IF %ERRORLEVEL% NEQ 0 ( pause )
|