spaCy/build.sh

9 lines
171 B
Bash
Raw Normal View History

2015-12-13 11:51:23 +00:00
#!/bin/bash
if [ ! -d ".build" ]; then
virtualenv --always-copy .build
fi
. .build/bin/activate
pip install -U -r requirements.txt
2015-12-13 12:08:06 +00:00
pip install -U tox
2015-12-13 12:07:15 +00:00
python -m tox $@