use 'python3' to create the venv, for systems still defaulting to v2

This commit is contained in:
Damien Elmes 2020-01-03 19:40:31 +10:00
parent 2fe250bcd5
commit 4133b14659

View File

@ -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