Suppressed dependency requirements notifications.

This commit is contained in:
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
---------------------------------------------------
In this section, we check if the virtual environment already exists
by verifying the presence of the "activate" script. If it doesn<73>t
by verifying the presence of the "activate" script. If it doesn<73>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<6E>s "Borealis" directory, create a new
in the virtual environment<6E>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

View File

@ -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."
}