init and some qol stuff for a modpack maker

This commit is contained in:
Joey Eamigh
2023-06-20 20:54:41 -04:00
commit 1160a10a3a
15 changed files with 460 additions and 0 deletions

15
venv.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
if command -v python3 &> /dev/null; then
python="python3"
else
python="python"
fi
if [ -d .venv ]; then exit 0; fi
$python -m venv .venv
source .venv/bin/activate
$python -m pip install --upgrade pip
$python -m pip install -r requirements.txt