begin work on actually getting installing working
This commit is contained in:
14
install_local.sh
Executable file
14
install_local.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
VENV_DIR="venv"
|
||||
|
||||
if [ -d "$VENV_DIR" ]; then
|
||||
source "$VENV_DIR/bin/activate"
|
||||
else
|
||||
python3 -m venv venv
|
||||
source "$VENV_DIR/bin/activate"
|
||||
fi
|
||||
|
||||
pip install --upgrade pip
|
||||
pip install -r requirements.txt
|
||||
python setup.py sdist || { echo "setup.py failed!"; exit 1; }
|
||||
pip install . || { echo "pip install failed!"; exit 1; }
|
||||
Reference in New Issue
Block a user