aboutsummaryrefslogtreecommitdiffstats
path: root/dev.ps1
blob: 7404a2baec3cc4cb8f628effeb09c01d94fb5e8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$ErrorActionPreference = "Stop"
$VENV = ".\venv"

python3 -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.

"@