Files
UnrealEngineUWP/Engine/Source/Programs/WebTestsServer/runserver.bat
lorry li 8d3f25ce73 Upgrade pip package in python env to fix the pip outdated warning.
#jira UE-182678
[REVIEW] [at]stephen.ma [at]rafa.lecina
#rb [at]stephen.ma [at]rafa.lecina

[CL 27484161 by lorry li in ue5-main branch]
2023-08-30 10:31:43 -04:00

17 lines
347 B
Batchfile
Executable File

@echo off
if exist env (
call .\env\Scripts\activate.bat
) else (
..\..\..\Binaries\ThirdParty\Python3\Win64\python.exe -m venv env
call .\env\Scripts\activate.bat
python -m pip install --upgrade pip
pip install -r requirements.txt
if %ERRORLEVEL% NEQ 0 (
rmdir /s /q env
exit %ERRORLEVEL%
)
)
python manage.py runserver 0.0.0.0:8000