8 lines
248 B
Bash
Executable File
8 lines
248 B
Bash
Executable File
#!/bin/bash
|
|
if [[ "$(python3 -V)" =~ "Python 3" ]]; then
|
|
python3 ../Python/run.py
|
|
elif [[ "$(python -V)" =~ "Python" ]]; then
|
|
python ../Python/run.py
|
|
else
|
|
echo "You need to install Python. You can use the default repositories of your system."
|
|
fi |