Skip to content

Commit 83e2b75

Browse files
authored
fix(linux): installer script prints maximum python version usable (#3546)
Changes: * Linux `install.sh` now prints the maximum python version to use in case no installed python version matches Commits: fix(linux): installer script prints maximum python version usable
2 parents 22c337b + df1907e commit 83e2b75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

installer/install.sh.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ done
2525

2626
if [ -z "$PYTHON" ]; then
2727
echo "A suitable Python interpreter could not be found"
28-
echo "Please install Python 3.9 or higher before running this script. See instructions at $INSTRUCTIONS for help."
28+
echo "Please install Python $MINIMUM_PYTHON_VERSION or higher (maximum $MAXIMUM_PYTHON_VERSION) before running this script. See instructions at $INSTRUCTIONS for help."
2929
read -p "Press any key to exit"
3030
exit -1
3131
fi

0 commit comments

Comments
 (0)