From 5e6ad27f7117156e35e09886257a85335b2c2f91 Mon Sep 17 00:00:00 2001
From: Nicole Rappe <nicole.rappe@bunny-lab.io>
Date: Mon, 10 Mar 2025 06:31:13 -0600
Subject: [PATCH] Suppressed dependency requirements notifications.

---
 Start_Linux.sh    | 7 ++++---
 Start_Windows.ps1 | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/Start_Linux.sh b/Start_Linux.sh
index e4265b3..879b809 100644
--- a/Start_Linux.sh
+++ b/Start_Linux.sh
@@ -25,7 +25,7 @@ dataDestination="$venvPath/Borealis"
 SECTION 2: Virtual Environment Creation
 ---------------------------------------------------
 In this section, we check if the virtual environment already exists
-by verifying the presence of the "activate" script. If it doesn�t
+by verifying the presence of the "activate" script. If it doesn�t
 exist, we create it.
 '
 
@@ -42,7 +42,7 @@ fi
 SECTION 3: Copy Data Folder
 ---------------------------------------------------
 If the "Data" folder is present, we remove any previously copied data
-in the virtual environment�s "Borealis" directory, create a new
+in the virtual environment�s "Borealis" directory, create a new
 "Borealis" folder, and then copy the "Data" folder into it.
 '
 
@@ -78,7 +78,8 @@ source "$venvPath/bin/activate"
 
 if [ -f "requirements.txt" ]; then
     echo "Installing dependencies..."
-    pip install -r requirements.txt
+    
+    pip install -q -r requirements.txt
 else
     echo "No requirements.txt found, skipping installation."
 fi
diff --git a/Start_Windows.ps1 b/Start_Windows.ps1
index e55582f..372d851 100644
--- a/Start_Windows.ps1
+++ b/Start_Windows.ps1
@@ -37,7 +37,7 @@ Write-Output "Activating virtual environment..."
 # Install dependencies
 if (Test-Path "requirements.txt") {
     Write-Output "Installing dependencies..."
-    pip install -r requirements.txt
+    pip install -q -r requirements.txt
 } else {
     Write-Output "No requirements.txt found, skipping installation."
 }