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

12 lines
214 B
Plaintext

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