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.

21 lines
256 B
Bash

#/usr/bin/env bash -e
VENV=venv
if [ ! -d "$VENV" ]
then
PYTHON=`which python3`
if [ ! -f $PYTHON ]
then
echo "could not find python"
fi
virtualenv -p $PYTHON $VENV
fi
. $VENV/bin/activate
pip install -r requirements.txt