From 43c37a88b2b8d7f0ad1ab473a0cdcf217b1890d7 Mon Sep 17 00:00:00 2001 From: BluTiger <65156144+Blu-Tiger@users.noreply.github.com> Date: Mon, 23 Sep 2024 16:55:44 +0200 Subject: [PATCH] Update unix_install.sh --- unix_install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/unix_install.sh b/unix_install.sh index b42a6ec..3597e22 100644 --- a/unix_install.sh +++ b/unix_install.sh @@ -86,9 +86,10 @@ else fi if [ -d ".venv/" ]; then - echo ".venv exists." + echo ".venv exists. Installing requirements.txt. ..." + .venv/bin/pip install -r requirements.txt else - echo "Making .venv and installing requirements.txt." + echo "Making .venv and installing requirements.txt. ..." if [[ "$OSTYPE" == "linux-gnu"* ]]; then # Detect the package manager if command_exists apt; then