mitmproxy/dev.ps1

21 lines
495 B
PowerShell
Raw Normal View History

2016-06-29 04:18:01 +00:00
$ErrorActionPreference = "Stop"
2016-12-26 18:55:18 +00:00
$pyver = python --version
2018-03-31 21:45:33 +00:00
if($pyver -notmatch "3\.[6-9]") {
Write-Warning "Unexpected Python version, expected Python 3.6 or above: $pyver"
2016-12-26 18:55:18 +00:00
}
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.
2018-03-31 21:45:33 +00:00
"@