From fc4460a39afbe7f881150eb7f6ebd34fced3ed74 Mon Sep 17 00:00:00 2001 From: Brosef Date: Fri, 13 Jun 2025 23:20:28 +0100 Subject: [PATCH] Added installers --- installDeps.bat | 13 +++++++++++++ installDeps.sh | 8 ++++++++ 2 files changed, 21 insertions(+) create mode 100644 installDeps.bat create mode 100644 installDeps.sh diff --git a/installDeps.bat b/installDeps.bat new file mode 100644 index 0000000..73b7793 --- /dev/null +++ b/installDeps.bat @@ -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 diff --git a/installDeps.sh b/installDeps.sh new file mode 100644 index 0000000..ea5d7f8 --- /dev/null +++ b/installDeps.sh @@ -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