aboutsummaryrefslogtreecommitdiffstats
path: root/dev.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'dev.ps1')
-rw-r--r--dev.ps17
1 files changed, 3 insertions, 4 deletions
diff --git a/dev.ps1 b/dev.ps1
index e6b9f610..ee0fc131 100644
--- a/dev.ps1
+++ b/dev.ps1
@@ -1,20 +1,19 @@
$ErrorActionPreference = "Stop"
-$VENV = ".\venv"
$pyver = python --version
if($pyver -notmatch "3\.[5-9]") {
Write-Warning "Unexpected Python version, expected Python 3.5 or above: $pyver"
}
-python -m venv $VENV --copies
-& $VENV\Scripts\activate.ps1
+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.
+ * Created virtualenv environment in .\venv.
* Installed all dependencies into the virtualenv.
* Activated virtualenv environment.