From 4133b14659cdd24067c626e5724ff353db324f6e Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 3 Jan 2020 19:40:31 +1000 Subject: [PATCH] use 'python3' to create the venv, for systems still defaulting to v2 --- scripts.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts.inc b/scripts.inc index f04e28148..58e96718b 100644 --- a/scripts.inc +++ b/scripts.inc @@ -13,7 +13,7 @@ fi # activate venv if [ ! -d pyenv ]; then - python -m venv pyenv + python3 -m venv pyenv . pyenv/bin/activate pip install --upgrade pip setuptools else