installer: call python3

This commit is contained in:
alfrix 2023-09-28 15:19:58 -03:00
parent a3345f78dd
commit d06231a6b6

View File

@ -98,7 +98,7 @@ check_requirements()
{
echo_text "Checking Python version"
python3 --version
if ! python -c 'import sys; exit(1) if sys.version_info <= (3,7) else exit(0)'; then
if ! python3 -c 'import sys; exit(1) if sys.version_info <= (3,7) else exit(0)'; then
echo_text 'Not supported'
exit 1
fi