mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-02 10:47:14 +00:00
15 lines
348 B
PowerShell
15 lines
348 B
PowerShell
$ErrorActionPreference = "Stop"
|
|
|
|
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.
|
|
|
|
"@
|