From 99b8da45fc938639f1bdd65c0ee03b1efb6be3aa Mon Sep 17 00:00:00 2001 From: stephenwebdev777-png Date: Mon, 10 Nov 2025 17:44:00 +0530 Subject: [PATCH] Add script to install Python dependencies --- scripts/install_dependencies.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 scripts/install_dependencies.sh diff --git a/scripts/install_dependencies.sh b/scripts/install_dependencies.sh new file mode 100644 index 0000000..d71a385 --- /dev/null +++ b/scripts/install_dependencies.sh @@ -0,0 +1,4 @@ +#!/bin/bash +cd /home/ubuntu/app +pip3 install --upgrade pip +pip3 install -r requirements.txt