Update setup.sh

This commit is contained in:
மனோஜ்குமார் பழனிச்சாமி 2022-04-07 21:13:54 +05:30 committed by GitHub
parent cbbbe8a5ba
commit abd747bdfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ function check_installed_python() {
exit 2 exit 2
fi fi
for v in 9 10 8 for v in 10 9 8
do do
PYTHON="python3.${v}" PYTHON="python3.${v}"
which $PYTHON which $PYTHON
@ -35,7 +35,7 @@ function check_installed_python() {
return return
fi fi
done done
PYTHON="python3.10"
echo "No usable python found. Please make sure to have python3.8 or newer installed." echo "No usable python found. Please make sure to have python3.8 or newer installed."
exit 1 exit 1
} }