KohyaSS/gui.sh
Vertana 4277645b2a Consolidated Install Scripts and Improve README
Install scripts have been consolidated for every non-Windows OS. Python Requirements were consolidated. README improved to work locally and provide more information.
2023-03-27 12:37:00 -07:00

10 lines
269 B
Bash
Executable File

#!/usr/bin/env bash
# Activate the virtual environment
source ./venv/bin/activate
python -V
# 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