14 lines
518 B
Batchfile
14 lines
518 B
Batchfile
@echo off
|
|
REM No idea if this works, I don't use this shit operating system.
|
|
REM If one of you runs Windows, please test this and then remove these
|
|
REM comments with the comit message "it works (:" please and thank you.
|
|
|
|
echo "Installing local requirements..."
|
|
./.venv/Scripts/pip3 install -r ./requirements.txt
|
|
|
|
echo "Installing NoPE-Lib requirements..."
|
|
./.venv/Scripts/pip3 install -r ../NoPELib/requirements.txt
|
|
|
|
echo "Installing PDO-Lib requirements..."
|
|
./.venv/Scripts/pip3 install -r ../PDOLib/requirements.txt
|