fix: update setup script to suggest Python 3.10 instead of 3.12

Since the minimum requirement is Python 3.10, suggest installing 3.10
rather than 3.12 to make it easier for users to meet the minimum requirements.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Fahad
2025-06-09 20:48:49 +04:00
parent de04ed0312
commit eafe29ddac

View File

@@ -32,10 +32,10 @@ if [ "$PYTHON_VERSION_MAJOR" -lt 3 ] || ([ "$PYTHON_VERSION_MAJOR" -eq 3 ] && [
echo "Please upgrade Python from https://python.org"
echo ""
echo "On macOS with Homebrew:"
echo " brew install python@3.12"
echo " brew install python@3.10"
echo ""
echo "On Ubuntu/Debian:"
echo " sudo apt update && sudo apt install python3.12 python3.12-venv"
echo " sudo apt update && sudo apt install python3.10 python3.10-venv"
exit 1
fi