From e7c1de335fd3e437ba9cef6703cfecea35550c39 Mon Sep 17 00:00:00 2001 From: Anthony <144498068+Anthonyxd22@users.noreply.github.com> Date: Fri, 6 Dec 2024 07:01:46 -0500 Subject: [PATCH] Update run-install.sh --- run-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-install.sh b/run-install.sh index fe46394b..350ce73b 100644 --- a/run-install.sh +++ b/run-install.sh @@ -13,13 +13,13 @@ log_message() { # Function to find a suitable Python version find_python() { - for py in python3.10 python3.9 python3 python; do + for py in python3.10 python3 python; do if command -v "$py" > /dev/null 2>&1; then echo "$py" return fi done - log_message "No compatible Python installation found. Please install Python 3.7+." + log_message "No compatible Python installation found. Please install Python 3.10." exit 1 }