Suppressed dependency requirements notifications.

This commit is contained in:
Nicole Rappe 2025-03-10 06:31:13 -06:00
parent 415f1842cd
commit 5e6ad27f71
2 changed files with 5 additions and 4 deletions

View File

@ -25,7 +25,7 @@ dataDestination="$venvPath/Borealis"
SECTION 2: Virtual Environment Creation SECTION 2: Virtual Environment Creation
--------------------------------------------------- ---------------------------------------------------
In this section, we check if the virtual environment already exists In this section, we check if the virtual environment already exists
by verifying the presence of the "activate" script. If it doesnt by verifying the presence of the "activate" script. If it doesn<EFBFBD>t
exist, we create it. exist, we create it.
' '
@ -42,7 +42,7 @@ fi
SECTION 3: Copy Data Folder SECTION 3: Copy Data Folder
--------------------------------------------------- ---------------------------------------------------
If the "Data" folder is present, we remove any previously copied data If the "Data" folder is present, we remove any previously copied data
in the virtual environments "Borealis" directory, create a new in the virtual environment<EFBFBD>s "Borealis" directory, create a new
"Borealis" folder, and then copy the "Data" folder into it. "Borealis" folder, and then copy the "Data" folder into it.
' '
@ -78,7 +78,8 @@ source "$venvPath/bin/activate"
if [ -f "requirements.txt" ]; then if [ -f "requirements.txt" ]; then
echo "Installing dependencies..." echo "Installing dependencies..."
pip install -r requirements.txt
pip install -q -r requirements.txt
else else
echo "No requirements.txt found, skipping installation." echo "No requirements.txt found, skipping installation."
fi fi

View File

@ -37,7 +37,7 @@ Write-Output "Activating virtual environment..."
# Install dependencies # Install dependencies
if (Test-Path "requirements.txt") { if (Test-Path "requirements.txt") {
Write-Output "Installing dependencies..." Write-Output "Installing dependencies..."
pip install -r requirements.txt pip install -q -r requirements.txt
} else { } else {
Write-Output "No requirements.txt found, skipping installation." Write-Output "No requirements.txt found, skipping installation."
} }