You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Copy file name to clipboardExpand all lines: installer/install.sh.in
+1-1
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ done
25
25
26
26
if [ -z"$PYTHON" ];then
27
27
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."
0 commit comments