Files
UnrealEngine/Engine/Source/Programs/WebTestsServer/createenv.bat
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

15 lines
263 B
Batchfile
Executable File

@echo off
if not exist env (
..\..\..\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%
)