2
0
mirror of https://github.com/ComradCollective/Comrad synced 2024-11-03 23:15:33 +00:00
Comrad/script/bootstrap

11 lines
204 B
Plaintext
Raw Normal View History

2020-08-30 14:08:06 +00:00
#!/bin/bash
pyenv install --skip-existing
VENV="${PWD##*/}.venv"
VENV=${VENV#-}
2020-09-01 16:16:38 +00:00
python3 -m venv $VENV
2020-08-30 14:08:06 +00:00
. $VENV/bin/activate
2020-09-01 16:16:38 +00:00
python3 -m pip install -U pip wheel
python3 -m pip install -r requirements.txt