revision 2.2

This commit is contained in:
.[d]. 2022-08-13 17:19:19 -05:00
parent 8859ca3c34
commit 26c37e5444

@ -9,7 +9,7 @@ if [ $? -eq 1 ]; then
echo "<<< error: missing python3 pip module >>> - attempting to auto-install"
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3 get-pip.py
python3 -m pip install --upgrade pip
python3 -m pip install --user --upgrade pip
if [ $? -eq 1 ]; then
echo "<<< error: missing python3 pip module >>> - to continue install python3 pip module first; aborting"
exit
@ -20,7 +20,7 @@ fi
python3 -m pipenv > /dev/null 2>&1
if [ $? -eq 1 ]; then
echo "<<< error: missing python3 pipenv module >>> - attempting to auto-install"
python3 -m pip install pipenv
python3 -m pip install --user pipenv
python3 -n pipenv > /dev/null 2>&1
#############################################################################################################################
if [ $? -eq 1 ]; then
@ -146,7 +146,7 @@ if [ -f ".venv" ]; then
else
mv .venv .backup_venv
pipenv --python 3.9
pipenv install
pipenv install --skip-lock
pipenv run maple
fi