File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
9
9
# Check Python version
10
10
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."
12
12
exit
13
13
fi
14
14
15
15
python_version_major=$( python3 -c ' import platform; print(platform.python_version_tuple()[0])' )
16
16
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."
19
19
exit 1
20
20
fi
21
21
You can’t perform that action at this time.
0 commit comments