2016-06-29 04:18:01 +00:00
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
|
2016-12-26 18:55:18 +00:00
|
|
|
$pyver = python --version
|
|
|
|
if($pyver -notmatch "3\.[5-9]") {
|
|
|
|
Write-Warning "Unexpected Python version, expected Python 3.5 or above: $pyver"
|
|
|
|
}
|
|
|
|
|
2017-01-29 23:38:40 +00:00
|
|
|
python -m venv .\venv --copies
|
|
|
|
& .\venv\Scripts\activate.ps1
|
2016-06-29 04:18:01 +00:00
|
|
|
|
|
|
|
python -m pip install --disable-pip-version-check -U pip
|
|
|
|
cmd /c "pip install -r requirements.txt 2>&1"
|
|
|
|
|
|
|
|
echo @"
|
|
|
|
|
2017-01-29 23:38:40 +00:00
|
|
|
* Created virtualenv environment in .\venv.
|
2016-06-29 04:18:01 +00:00
|
|
|
* Installed all dependencies into the virtualenv.
|
|
|
|
* Activated virtualenv environment.
|
|
|
|
|
|
|
|
"@
|