aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1a5c821..0416565 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ default:
# Create virtualenv and install/update the dependencies
venv: ${VENV}/bin/activate
${VENV}/bin/activate: requirements.txt
- test -d ./${VENV} || virtualenv --python=python3 ${VENV}
+ test -d ./${VENV} || python3 -m venv ${VENV}
./${VENV}/bin/pip3 install -r requirements.txt
touch ${VENV}/bin/activate