Skip to content

Commit

Permalink
Update run-install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
MarxAnthony authored Dec 6, 2024
1 parent 9916e31 commit e7c1de3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit e7c1de3

Please sign in to comment.