2023-04-01 20:22:30 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-03-19 07:29:16 +00:00
|
|
|
|
|
|
|
# Activate the virtual environment
|
2023-04-01 20:22:30 +00:00
|
|
|
source ./venv/bin/activate
|
2023-03-28 01:58:30 +00:00
|
|
|
|
2023-04-01 20:22:30 +00:00
|
|
|
# If the requirements are validated, run the kohya_gui.py script with the command-line arguments
|
|
|
|
if python tools/validate_requirements.py; then
|
2023-03-19 07:29:16 +00:00
|
|
|
python kohya_gui.py "$@"
|
2023-04-01 20:22:30 +00:00
|
|
|
fi
|