forked from mitmproxy/mitmproxy
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.ps1
More file actions
Latest commit
20 lines (14 loc) · 495 Bytes
/
Copy pathdev.ps1
File metadata and controls
20 lines (14 loc) · 495 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$ErrorActionPreference="Stop"
$pyver= python --version
if($pyver-notmatch"3\.[6-9]") {
Write-Warning"Unexpected Python version, expected Python 3.6 or above: $pyver"
}
python -m venv .\venv --copies
& .\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.
"@