Compare commits

...

2 Commits

Author SHA1 Message Date
087c751cd1 Merge branch 'main' of https://git.personal.imadumbass.dog/Brosef/RussianRoulette 2025-06-13 23:20:32 +01:00
fc4460a39a Added installers 2025-06-13 23:20:28 +01:00
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