From 1cb14f33da02930f874f42054790ecbac931cf87 Mon Sep 17 00:00:00 2001 From: Baptiste Darthenay Date: Tue, 3 Jan 2017 15:11:40 +0100 Subject: pyvenv to python3 -m venv --- venvworkon.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/venvworkon.sh b/venvworkon.sh index 48cf308..9dcd85c 100755 --- a/venvworkon.sh +++ b/venvworkon.sh @@ -20,7 +20,7 @@ workon() { # Creates virtual env if doesn't exists if [ ! -e "$envdir" ]; then - pyvenv $envdir + python3 -m venv $envdir echo "Virtual env created in $envdir" fi -- cgit v1.2.3