stable-diffusion-webui/webui.bat

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

99 lines
2.5 KiB
Batchfile
Raw Normal View History

2022-09-02 14:49:35 +08:00
@echo off
2023-10-14 20:58:28 +08:00
if exist webui.settings.bat (
call webui.settings.bat
)
if not defined PYTHON (set PYTHON=python)
if defined GIT (set "GIT_PYTHON_GIT_EXECUTABLE=%GIT%")
2023-01-16 04:13:58 +08:00
if not defined VENV_DIR (set "VENV_DIR=%~dp0%venv")
set SD_WEBUI_RESTART=tmp/restart
2022-09-26 18:52:44 +08:00
set ERROR_REPORTING=FALSE
2022-09-02 14:49:35 +08:00
mkdir tmp 2>NUL
%PYTHON% -c "" >tmp/stdout.txt 2>tmp/stderr.txt
if %ERRORLEVEL% == 0 goto :check_pip
2022-09-02 14:49:35 +08:00
echo Couldn't launch python
goto :show_stdout_stderr
:check_pip
%PYTHON% -mpip --help >tmp/stdout.txt 2>tmp/stderr.txt
if %ERRORLEVEL% == 0 goto :start_venv
if "%PIP_INSTALLER_LOCATION%" == "" goto :show_stdout_stderr
%PYTHON% "%PIP_INSTALLER_LOCATION%" >tmp/stdout.txt 2>tmp/stderr.txt
if %ERRORLEVEL% == 0 goto :start_venv
echo Couldn't install pip
goto :show_stdout_stderr
:start_venv
2023-01-11 06:27:00 +08:00
if ["%VENV_DIR%"] == ["-"] goto :skip_venv
if ["%SKIP_VENV%"] == ["1"] goto :skip_venv
2022-09-03 00:26:18 +08:00
2023-01-11 06:27:00 +08:00
dir "%VENV_DIR%\Scripts\Python.exe" >tmp/stdout.txt 2>tmp/stderr.txt
2022-09-03 00:26:18 +08:00
if %ERRORLEVEL% == 0 goto :activate_venv
for /f "delims=" %%i in ('CALL %PYTHON% -c "import sys; print(sys.executable)"') do set PYTHON_FULLNAME="%%i"
2022-09-03 00:26:18 +08:00
echo Creating venv in directory %VENV_DIR% using python %PYTHON_FULLNAME%
2023-01-11 06:27:00 +08:00
%PYTHON_FULLNAME% -m venv "%VENV_DIR%" >tmp/stdout.txt 2>tmp/stderr.txt
if %ERRORLEVEL% == 0 goto :upgrade_pip
2023-01-11 06:27:00 +08:00
echo Unable to create venv in directory "%VENV_DIR%"
2022-09-03 00:26:18 +08:00
goto :show_stdout_stderr
:upgrade_pip
"%VENV_DIR%\Scripts\Python.exe" -m pip install --upgrade pip
if %ERRORLEVEL% == 0 goto :activate_venv
echo Warning: Failed to upgrade PIP version
2022-09-03 00:26:18 +08:00
:activate_venv
set PYTHON="%VENV_DIR%\Scripts\Python.exe"
2024-07-18 22:49:49 +08:00
call "%VENV_DIR%\Scripts\activate.bat"
2022-09-03 00:26:18 +08:00
echo venv %PYTHON%
:skip_venv
if [%ACCELERATE%] == ["True"] goto :accelerate
goto :launch
2022-09-07 17:32:28 +08:00
2022-11-10 01:15:17 +08:00
:accelerate
echo Checking for accelerate
set ACCELERATE="%VENV_DIR%\Scripts\accelerate.exe"
if EXIST %ACCELERATE% goto :accelerate_launch
2022-11-10 01:15:17 +08:00
2022-09-02 14:49:35 +08:00
:launch
2022-10-10 08:52:35 +08:00
%PYTHON% launch.py %*
2023-06-03 14:59:56 +08:00
if EXIST tmp/restart goto :skip_venv
2022-09-02 14:49:35 +08:00
pause
exit /b
2022-11-10 01:15:17 +08:00
:accelerate_launch
echo Accelerating
2022-11-10 01:15:17 +08:00
%ACCELERATE% launch --num_cpu_threads_per_process=6 launch.py
2023-06-03 14:59:56 +08:00
if EXIST tmp/restart goto :skip_venv
2022-11-10 01:15:17 +08:00
pause
exit /b
2022-09-02 14:49:35 +08:00
:show_stdout_stderr
echo.
echo exit code: %errorlevel%
for /f %%i in ("tmp\stdout.txt") do set size=%%~zi
if %size% equ 0 goto :show_stderr
echo.
echo stdout:
type tmp\stdout.txt
:show_stderr
for /f %%i in ("tmp\stderr.txt") do set size=%%~zi
if %size% equ 0 goto :show_stderr
echo.
echo stderr:
type tmp\stderr.txt
:endofscript
echo.
echo Launch unsuccessful. Exiting.
2022-09-03 00:26:18 +08:00
pause