Mac/Linux installer now looks for pip3 in addition to pip.

This commit is contained in:
Scott Duensing 2024-05-09 17:11:16 -05:00
parent 885c71d207
commit c5f8467dbf

View file

@ -72,8 +72,11 @@ fi
PIP=$(which pip)
if [[ $? == 1 ]]; then
echo "Unable to find pip. Exiting."
exit 1
PIP=$(which pip3)
if [[ $? == 1 ]]; then
echo "Unable to find pip. Exiting."
exit 1
fi
fi
CURL=$(which curl)
@ -114,7 +117,7 @@ rm -f *.bat
mv FoenixMgr-master FoenixMgr
pushd FoenixMgr
pip install -r requirements.txt
${PIP} install -r requirements.txt
popd
echo "[DEFAULT]" > foenixmgr.ini