You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gristlabs_grist-core/buildtools/prepare_python.sh

12 lines
149 B

#!/bin/bash
set -e
if [ ! -e venv ]; then
virtualenv -ppython2.7 venv
fi
. venv/bin/activate
pip install --no-deps -r sandbox/requirements.txt