mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
16 lines
362 B
PowerShell
16 lines
362 B
PowerShell
$ErrorActionPreference = "Stop"
|
|
$VENV = ".\venv"
|
|
|
|
virtualenv $VENV --always-copy
|
|
& $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.
|
|
|
|
"@ |