update windows dev script

This commit is contained in:
Maximilian Hils 2016-12-26 19:55:18 +01:00
parent 4b1224e592
commit 2735338815

View File

@ -1,7 +1,12 @@
$ErrorActionPreference = "Stop" $ErrorActionPreference = "Stop"
$VENV = ".\venv" $VENV = ".\venv"
python3 -m venv $VENV --copies $pyver = python --version
if($pyver -notmatch "3\.[5-9]") {
Write-Warning "Unexpected Python version, expected Python 3.5 or above: $pyver"
}
python -m venv $VENV --copies
& $VENV\Scripts\activate.ps1 & $VENV\Scripts\activate.ps1
python -m pip install --disable-pip-version-check -U pip python -m pip install --disable-pip-version-check -U pip