Skip to content

Commit

Permalink
Update start_local-windows_setup_and_server.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
acageduser committed Sep 9, 2024
1 parent 0debda2 commit aeb3585
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions start_local-windows_setup_and_server.bat
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo + Checking for Python 3.x +
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo.
python --version 2>nul | findstr /r "^Python 3\." >nul
python --version 2>/dev/null | grep -q "^Python 3\."
if %ERRORLEVEL% neq 0 (
echo Python 3.x not found, please install Python 3.12 or any 3.7 or above version and ensure it's added to PATH.
pause
Expand All @@ -34,7 +34,7 @@ echo + Ensuring pip 24.1.2 is Installed
echo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo.
python -m ensurepip --upgrade 2>nul
python -m pip --version 2>nul | findstr "pip 24.1.2" >nul
python -m pip --version 2>/dev/null | grep -q "pip 24.1.2"
if %ERRORLEVEL% neq 0 (
echo Installing pip 24.1.2...
python -m pip install --upgrade pip==24.1.2
Expand Down

0 comments on commit aeb3585

Please sign in to comment.