We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc69b6d commit 77d0aeeCopy full SHA for 77d0aee
1 file changed
install.sh
@@ -4,18 +4,19 @@ folder="dabs"
4
5
version=$(python -c "import sys; print(sys.version_info[:])" 2>&1)
6
if [[ -z "$version" ]]; then
7
- echo "Python not found"
8
- exit 1
+ echo "Python not found"
+ exit 1
9
fi
10
11
major=$(echo "$version" | cut -d ',' -f 1 | tr -d '(')
12
minor=$(echo "$version" | cut -d ',' -f 2)
13
14
if [[ $major -lt 3 || $minor -lt 9 ]]; then
15
- echo "Python 3.9 or higher is required"
16
+ echo "Python 3.9 or higher is required"
17
18
19
cd $folder || exit
20
pip install -r requirements.txt
21
-python main.py
+python main.py
22
+
0 commit comments