mitmproxy/dev.ps1

21 lines
508 B
PowerShell
Raw Normal View History

2016-06-29 04:18:01 +00:00
$ErrorActionPreference = "Stop"
$VENV = ".\venv"
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"
}
python -m venv $VENV --copies
2016-06-29 04:18:01 +00:00
& $VENV\Scripts\activate.ps1
python -m pip install --disable-pip-version-check -U pip
cmd /c "pip install -r requirements.txt 2>&1"
echo @"
* Created virtualenv environment in $VENV.
* Installed all dependencies into the virtualenv.
* Activated virtualenv environment.
"@