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

12 lines
216 B
Plaintext
Raw Normal View History

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