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

12 lines
216 B
Bash

#!/bin/bash
pyenv install --skip-existing
#VENV="${PWD##*/}.venv"
VENV="venv"
VENV=${VENV#-}
python -m venv $VENV
. $VENV/bin/activate
# python -m pip install -U pip wheel
python -m pip install -r requirements.txt