From 7a6fd09836b2a054586c8b0ff6e433974d3fd4d0 Mon Sep 17 00:00:00 2001 From: Florimond Manca Date: Wed, 9 Dec 2020 12:04:45 +0100 Subject: [PATCH] Use "python3" as the executable when installing deps (#22) --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 5125465..3e875c6 100755 --- a/scripts/install +++ b/scripts/install @@ -5,7 +5,7 @@ BIN="$VENV/bin/" set -x -python -m venv $VENV +python3 -m venv $VENV ${BIN}pip install -U pip ${BIN}pip install -r requirements.txt