1
0
mirror of https://github.com/donaldzou/WGDashboard.git synced 2024-11-06 16:00:28 +01:00

Update wgd.sh

This commit is contained in:
Donald Zou 2024-08-02 18:30:16 -04:00
parent 658c6554af
commit cf90d05115

View File

@ -37,7 +37,7 @@ _check_and_set_venv(){
VIRTUAL_ENV="./venv" VIRTUAL_ENV="./venv"
if [ ! -d $VIRTUAL_ENV ]; then if [ ! -d $VIRTUAL_ENV ]; then
printf "[WGDashboard] Creating Python Virtual Environment under ./venv\n" printf "[WGDashboard] Creating Python Virtual Environment under ./venv\n"
{ python3 -m venv $VIRTUAL_ENV; } >> ./log/instal.txt { python3 -m venv $VIRTUAL_ENV; } >> ./log/install.txt
fi fi
printf "[WGDashboard] Activate Python Virtual Environment under ./venv\n" printf "[WGDashboard] Activate Python Virtual Environment under ./venv\n"
. ${VIRTUAL_ENV}/bin/activate . ${VIRTUAL_ENV}/bin/activate
@ -176,20 +176,22 @@ install_wgd(){
else else
printf "[WGDashboard] \xE2\x9C\x94 Python is installed\n" printf "[WGDashboard] \xE2\x9C\x94 Python is installed\n"
fi fi
if ! python3 -m venv -h > /dev/null 2>&1 _installPythonVenv
then _installPythonPip
printf "[WGDashboard] Python Virtual Environment is not installed, trying to install now\n" # if ! python3 -m venv -h > /dev/null 2>&1
_installPythonVenv # then
else # printf "[WGDashboard] Python Virtual Environment is not installed, trying to install now\n"
printf "[WGDashboard] \xE2\x9C\x94 Python Virtual Environment is installed\n" # _installPythonVenv
fi # else
if ! python3 -m pip -h > /dev/null 2>&1 # printf "[WGDashboard] \xE2\x9C\x94 Python Virtual Environment is installed\n"
then # fi
printf "[WGDashboard] Python Package Manager (PIP) is not installed, trying to install now\n" # if ! python3 -m pip -h > /dev/null 2>&1
_installPythonPip # then
else # printf "[WGDashboard] Python Package Manager (PIP) is not installed, trying to install now\n"
printf "[WGDashboard] \xE2\x9C\x94 Python Package Manager (PIP) is installed\n" # _installPythonPip
fi # else
# printf "[WGDashboard] \xE2\x9C\x94 Python Package Manager (PIP) is installed\n"
# fi
version_pass=$(python3 -c 'import sys; print("1") if (sys.version_info.major == 3 and sys.version_info.minor >= 7) else print("0");') version_pass=$(python3 -c 'import sys; print("1") if (sys.version_info.major == 3 and sys.version_info.minor >= 7) else print("0");')