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
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