You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[REVIEW] [at]stephen.ma [at]rafa.lecina [at]chris.constantinescu #jira UE-194887 #rb [at]chris.constantinescu [CL 27780566 by lorry li in ue5-main branch]
18 lines
437 B
Bash
Executable File
18 lines
437 B
Bash
Executable File
if [ -d "env" ]; then
|
|
. ./env/bin/activate
|
|
else
|
|
if [ "$OSTYPE" = "darwin" ]; then
|
|
../../../Binaries/ThirdParty/Python3/Mac/bin/python3 -m venv env
|
|
else
|
|
../../../Binaries/ThirdParty/Python3/Linux/bin/python3 -m venv env
|
|
fi
|
|
. ./env/bin/activate
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
local install_exit_code = $?
|
|
if [ $install_exit_code -ne 0 ]; then
|
|
rm -rf env
|
|
exit $install_exit_code
|
|
fi
|
|
fi
|