From f10acb3403477060d7f79163bb5b220f1a19b769 Mon Sep 17 00:00:00 2001 From: Marcin Szczyglinski Date: Sun, 25 Aug 2024 20:27:52 +0200 Subject: [PATCH] Added missing environment activate --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 9d8a73d6f..7c3e926d0 100644 --- a/install.sh +++ b/install.sh @@ -1,5 +1,6 @@ #!/bin/bash # This script is used to install the app dependencies and run the app using the virtual environment python -m venv ./venv +source ./venv/bin/activate pip install -r requirements.txt python3 run.py "$@" \ No newline at end of file