From 5291f5a095ed46bf9168e05a957ef5f761638945 Mon Sep 17 00:00:00 2001 From: geobrun <68049696+geobrun@users.noreply.github.com> Date: Tue, 4 Apr 2023 09:12:44 +0200 Subject: [PATCH] Update install_app.sh --- install/install_app.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install_app.sh b/install/install_app.sh index f2d234bab..9d50bc156 100755 --- a/install/install_app.sh +++ b/install/install_app.sh @@ -73,7 +73,7 @@ sudo sed -i "s%backoffice_username%${backoffice_username}%" /etc/apache2/sites-a cd $DIR/backend venv_path=$DIR/backend/${venv_dir:-".venv"} if [ ! -f $venv_path/bin/activate ]; then - python3 -m virtualenv $venv_path + python3 -m venv $venv_path fi source .venv/bin/activate pip install -r requirements.txt