2
0
mirror of https://github.com/ComradCollective/Comrad synced 2024-11-01 21:40:32 +00:00
Comrad/script/bootstrap
2020-09-01 17:16:38 +01:00

11 lines
204 B
Bash

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