You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Comrad/script/bootstrap

11 lines
204 B
Plaintext

#!/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