KohyaSS/gui.sh
2023-04-01 16:22:30 -04:00

9 lines
259 B
Bash
Executable File

#!/usr/bin/env bash
# Activate the virtual environment
source ./venv/bin/activate
# If the requirements are validated, run the kohya_gui.py script with the command-line arguments
if python tools/validate_requirements.py; then
python kohya_gui.py "$@"
fi