stable-diffusion-webui/webui.bat

75 lines
1.7 KiB
Batchfile
Raw Normal View History

2022-09-02 06:49:35 +00:00
@echo off
if not defined PYTHON (set PYTHON=python)
2023-01-10 22:27:00 +00:00
if not defined VENV_DIR (set VENV_DIR=%~dp0%venv)
2022-09-26 10:52:44 +00:00
set ERROR_REPORTING=FALSE
2022-09-02 06:49:35 +00:00
mkdir tmp 2>NUL
%PYTHON% -c "" >tmp/stdout.txt 2>tmp/stderr.txt
if %ERRORLEVEL% == 0 goto :start_venv
2022-09-02 06:49:35 +00:00
echo Couldn't launch python
goto :show_stdout_stderr
:start_venv
2023-01-10 22:27:00 +00:00
if ["%VENV_DIR%"] == ["-"] goto :skip_venv
2022-09-02 16:26:18 +00:00
2023-01-10 22:27:00 +00:00
dir "%VENV_DIR%\Scripts\Python.exe" >tmp/stdout.txt 2>tmp/stderr.txt
2022-09-02 16:26:18 +00: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-02 16:26:18 +00:00
echo Creating venv in directory %VENV_DIR% using python %PYTHON_FULLNAME%
2023-01-10 22:27:00 +00:00
%PYTHON_FULLNAME% -m venv "%VENV_DIR%" >tmp/stdout.txt 2>tmp/stderr.txt
2022-09-02 16:26:18 +00:00
if %ERRORLEVEL% == 0 goto :activate_venv
2023-01-10 22:27:00 +00:00
echo Unable to create venv in directory "%VENV_DIR%"
2022-09-02 16:26:18 +00:00
goto :show_stdout_stderr
:activate_venv
set PYTHON="%VENV_DIR%\Scripts\Python.exe"
2022-09-02 16:26:18 +00:00
echo venv %PYTHON%
2022-11-09 17:15:17 +00:00
if [%ACCELERATE%] == ["True"] goto :accelerate
goto :launch
2022-09-02 16:26:18 +00:00
:skip_venv
2022-09-07 09:32:28 +00:00
2022-11-09 17:15:17 +00:00
:accelerate
echo "Checking for accelerate"
set ACCELERATE="%VENV_DIR%\Scripts\accelerate.exe"
if EXIST %ACCELERATE% goto :accelerate_launch
2022-11-09 17:15:17 +00:00
2022-09-02 06:49:35 +00:00
:launch
2022-10-10 00:52:35 +00:00
%PYTHON% launch.py %*
2022-09-02 06:49:35 +00:00
pause
exit /b
2022-11-09 17:15:17 +00:00
:accelerate_launch
echo "Accelerating"
2022-11-09 17:15:17 +00:00
%ACCELERATE% launch --num_cpu_threads_per_process=6 launch.py
pause
exit /b
2022-09-02 06:49:35 +00: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-02 16:26:18 +00:00
pause