From 393d59462118a0d90dceaf537d0c45b1f5853c7b Mon Sep 17 00:00:00 2001 From: litagin02 Date: Wed, 29 May 2024 08:56:05 +0900 Subject: [PATCH] Fix bat comment, delete updating pip since we'll use uv --- scripts/Setup-Python.bat | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/scripts/Setup-Python.bat b/scripts/Setup-Python.bat index 27ca69e..a2df0b1 100644 --- a/scripts/Setup-Python.bat +++ b/scripts/Setup-Python.bat @@ -66,7 +66,7 @@ if not exist "%PYTHON_DIR%"\ ( if !errorlevel! neq 0 ( pause & exit /b !errorlevel! ) echo -------------------------------------------------- - echo Installing pip and virtualenv... + echo Downloading get-pip.py... echo -------------------------------------------------- echo Executing: %CURL_CMD% -o "%PYTHON_DIR%\get-pip.py" https://bootstrap.pypa.io/get-pip.py %CURL_CMD% -o "%PYTHON_DIR%\get-pip.py" https://bootstrap.pypa.io/get-pip.py @@ -103,13 +103,6 @@ echo Executing: call "%VENV_DIR%\Scripts\activate.bat" call "%VENV_DIR%\Scripts\activate.bat" if !errorlevel! neq 0 ( pause & exit /b !errorlevel! ) -echo -------------------------------------------------- -echo Upgrading pip... -echo -------------------------------------------------- -echo Executing: python -m pip install --upgrade pip -python -m pip install --upgrade pip -if !errorlevel! neq 0 ( pause & exit /b !errorlevel! ) - echo -------------------------------------------------- echo Completed. echo --------------------------------------------------