KohyaSS/gui.bat

12 lines
321 B
Batchfile

@echo off
:: Activate the virtual environment
call .\venv\Scripts\activate.bat
:: Validate the requirements and store the exit code
python.exe .\tools\validate_requirements.py
:: If the exit code is 0, run the kohya_gui.py script with the command-line arguments
if %errorlevel% equ 0 (
python.exe kohya_gui.py %*
)