mirror of
https://github.com/BovineOverlord/Loyal-Bear---The-SynthID-Scrambler.git
synced 2026-08-24 13:23:08 +02:00
10 lines
175 B
Bash
10 lines
175 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if ! command -v python3 &> /dev/null; then
|
|
echo "ERROR: Python 3 not found. Please install Python 3.10+ first."
|
|
exit 1
|
|
fi
|
|
|
|
python3 main.py
|