Skip to content

Commit 8bb4157

Browse files
committed
(tweak) Lower python version from 3.11 to 3.8
1 parent 987e026 commit 8bb4157

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

babbleapp.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ fi
88

99
# Check Python version
1010
if ! command -v python3 &> /dev/null; then
11-
echo "Error: Python is not installed. Please install Python 3.11 or higher."
11+
echo "Error: Python is not installed. Please install Python 3.8 or higher."
1212
exit
1313
fi
1414

1515
python_version_major=$(python3 -c 'import platform; print(platform.python_version_tuple()[0])')
1616
python_version_minor=$(python3 -c 'import platform; print(platform.python_version_tuple()[1])')
17-
if (( python_version_major < 3 || python_version_minor < 11 )); then
18-
echo "Error: Your Python version is too low! Please install 3.11 or higher."
17+
if (( python_version_major < 3 || python_version_minor < 8 )); then
18+
echo "Error: Your Python version is too low! Please install 3.8 or higher."
1919
exit 1
2020
fi
2121

0 commit comments

Comments
 (0)