mirror of https://github.com/explosion/spaCy.git
make venv work for mingw
This commit is contained in:
parent
f5eb3a38f7
commit
e6fc51d6f3
7
venv.sh
7
venv.sh
|
@ -5,7 +5,12 @@ if [ ! -d ".build" ]; then
|
|||
virtualenv .build --python $1
|
||||
fi
|
||||
|
||||
. .build/bin/activate
|
||||
if [ -d ".build/bin" ]; then
|
||||
source .build/bin/activate
|
||||
elif [ -d ".build/Scripts" ]; then
|
||||
source .build/Scripts/activate
|
||||
fi
|
||||
|
||||
python build.py prepare $3
|
||||
python build.py $2
|
||||
python build.py test
|
||||
|
|
Loading…
Reference in New Issue