Added installers

This commit is contained in:
2025-06-13 23:20:28 +01:00
parent a6b96d43ef
commit fc4460a39a
2 changed files with 21 additions and 0 deletions

13
installDeps.bat Normal file
View File

@ -0,0 +1,13 @@
@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

8
installDeps.sh Normal file
View File

@ -0,0 +1,8 @@
echo "Installing local requirements..."
./.venv/bin/pip3 install -r ./requirements.txt
echo "Installing NoPE-Lib requirements..."
./.venv/bin/pip3 install -r ../NoPELib/requirements.txt
echo "Installing PDO-Lib requirements..."
./.venv/bin/pip3 install -r ../PDOLib/requirements.txt