diff --git a/runbot.sh b/runbot.sh index 78d73bb..8558088 100644 --- a/runbot.sh +++ b/runbot.sh @@ -6,8 +6,15 @@ fi ##################################################################################################################################### python3 -m pip > /dev/null 2>&1 if [ $? -eq 1 ]; then - echo "<<< error: missing python3 pip module>>> - to continue install python3 pip module first; aborting" - exit + echo "<<< error: missing python3 pip module >>> - attempting to auto-install" + wget https://bootstrap.pypa.io/get-pip.py + python3 get-pip.py + python3 -m pip install --upgrade pip + if [ $? -eq 1 ]; then + echo "<<< error: missing python3 pip module >>> - to continue install python3 pip module first; aborting" + exit + fi + ############################################################################################################################# fi ##################################################################################################################################### python3 -m pipenv > /dev/null 2>&1