mirror of
https://github.com/explosion/spaCy.git
synced 2025-03-13 16:05:50 +03:00
14 lines
300 B
PowerShell
14 lines
300 B
PowerShell
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
|
|
|
|
python build.py $install_mode $pip_date
|