spaCy/venv.ps1

14 lines
300 B
PowerShell
Raw Normal View History

2015-12-16 20:11:54 +03:00
param (
[string]$python = $(throw "-python is required."),
[string]$install_mode = $(throw "-install_mode is required."),
[string]$pip_date
)
if(!(Test-Path -Path ".build"))
{
virtualenv .build --python $python
}
.build\Scripts\activate.ps1
2015-12-16 20:23:48 +03:00
python build.py $install_mode $pip_date