revision 2.2

This commit is contained in:
.[d]. 2022-08-13 17:12:05 -05:00
parent 9c8cb2dc48
commit cb47710fd8

@ -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