mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 05:07:03 +03:00
9 lines
157 B
Bash
Executable File
9 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
if [ ! -d ".build" ]; then
|
|
virtualenv .build
|
|
fi
|
|
. .build/bin/activate
|
|
pip install -U -r requirements.txt
|
|
pip install -U tox
|
|
python -m tox $@
|