spaCy/travis.sh

27 lines
584 B
Bash
Raw Normal View History

#!/bin/bash
2016-10-15 02:10:33 +03:00
if [ "${VIA}" == "pypi" ]; then
rm -rf *
pip install spacy
fi
2016-10-15 02:10:33 +03:00
if [ "${VIA}" == "sdist" ]; then
rm -rf *
wget https://api.explosion.ai/build/spaCy/$TRAVIS_COMMIT spacy.tgz
pip install spacy.tgz
fi
2016-10-13 21:48:22 +03:00
if [ "${VIA}" == "compile" ]; then
pip install -r requirements.txt
pip install -e .
mkdir -p corpora/en
cd corpora/en
wget --no-check-certificate http://wordnetcode.princeton.edu/3.0/WordNet-3.0.tar.gz
tar -xzf WordNet-3.0.tar.gz
mv WordNet-3.0 wordnet
cd ../../
mkdir models/
python bin/init_model.py en lang_data/ corpora/ models/en
fi