mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 18:06:29 +03:00
10 lines
129 B
Bash
Executable File
10 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ ! -d ".build" ]; then
|
|
virtualenv .build --python $1
|
|
fi
|
|
|
|
. .build/bin/activate
|
|
python build.py $2 $3
|