mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-22 08:13:22 +01:00
80 lines
3.2 KiB
Batchfile
80 lines
3.2 KiB
Batchfile
@echo off
|
|
|
|
@echo. & echo "Easy Diffusion - v3" & echo.
|
|
|
|
set PATH=C:\Windows\System32;%PATH%
|
|
|
|
if exist "scripts\config.bat" (
|
|
@call scripts\config.bat
|
|
)
|
|
|
|
if exist "scripts\user_config.bat" (
|
|
@call scripts\user_config.bat
|
|
)
|
|
|
|
if exist "stable-diffusion\env" (
|
|
@set PYTHONPATH=%PYTHONPATH%;%cd%\stable-diffusion\env\lib\site-packages
|
|
)
|
|
|
|
if exist "scripts\get_config.py" (
|
|
@FOR /F "tokens=* USEBACKQ" %%F IN (`python scripts\get_config.py --default=main update_branch`) DO (
|
|
@SET update_branch=%%F
|
|
)
|
|
)
|
|
|
|
if "%update_branch%"=="" (
|
|
set update_branch=main
|
|
)
|
|
|
|
@>nul findstr /m "conda_sd_ui_deps_installed" scripts\install_status.txt
|
|
@if "%ERRORLEVEL%" NEQ "0" (
|
|
for /f "tokens=*" %%a in ('python -c "import os; parts = os.getcwd().split(os.path.sep); print(len(parts))"') do if "%%a" NEQ "2" (
|
|
echo. & echo "!!!! WARNING !!!!" & echo.
|
|
echo "Your 'stable-diffusion-ui' folder is at %cd%" & echo.
|
|
echo "The 'stable-diffusion-ui' folder needs to be at the top of your drive, for e.g. 'C:\stable-diffusion-ui' or 'D:\stable-diffusion-ui' etc."
|
|
echo "Not placing this folder at the top of a drive can cause errors on some computers."
|
|
echo. & echo "Recommended: Please close this window and move the 'stable-diffusion-ui' folder to the top of a drive. For e.g. 'C:\stable-diffusion-ui'. Then run the installer again." & echo.
|
|
echo "Not Recommended: If you're sure that you want to install at the current location, please press any key to continue." & echo.
|
|
|
|
pause
|
|
)
|
|
)
|
|
|
|
@>nul findstr /m "sd_ui_git_cloned" scripts\install_status.txt
|
|
@if "%ERRORLEVEL%" EQU "0" (
|
|
@echo "Easy Diffusion's git repository was already installed. Updating from %update_branch%.."
|
|
|
|
@cd sd-ui-files
|
|
|
|
@call git add -A .
|
|
@call git stash
|
|
@call git reset --hard
|
|
@call git -c advice.detachedHead=false checkout "%update_branch%"
|
|
@call git pull
|
|
|
|
@cd ..
|
|
) else (
|
|
@echo. & echo "Downloading Easy Diffusion..." & echo.
|
|
@echo "Using the %update_branch% channel" & echo.
|
|
|
|
@call git clone -b "%update_branch%" https://github.com/easydiffusion/easydiffusion.git sd-ui-files && (
|
|
@echo sd_ui_git_cloned >> scripts\install_status.txt
|
|
) || (
|
|
@echo "Error downloading Easy Diffusion. Sorry about that, please try to:" & echo " 1. Run this installer again." & echo " 2. If that doesn't fix it, please try the common troubleshooting steps at https://github.com/easydiffusion/easydiffusion/wiki/Troubleshooting" & echo " 3. If those steps don't help, please copy *all* the error messages in this window, and ask the community at https://discord.com/invite/u9yhsFmEkB" & echo " 4. If that doesn't solve the problem, please file an issue at https://github.com/easydiffusion/easydiffusion/issues" & echo "Thanks!"
|
|
pause
|
|
@exit /b
|
|
)
|
|
)
|
|
|
|
@xcopy sd-ui-files\ui ui /s /i /Y /q
|
|
@copy sd-ui-files\scripts\on_sd_start.bat scripts\ /Y
|
|
@copy sd-ui-files\scripts\check_modules.py scripts\ /Y
|
|
@copy sd-ui-files\scripts\get_config.py scripts\ /Y
|
|
@copy sd-ui-files\scripts\config.yaml.sample scripts\ /Y
|
|
@copy "sd-ui-files\scripts\Start Stable Diffusion UI.cmd" . /Y
|
|
@copy "sd-ui-files\scripts\Developer Console.cmd" . /Y
|
|
|
|
@call scripts\on_sd_start.bat
|
|
|
|
@pause
|