Suppressed dependency requirements notifications.
This commit is contained in:
parent
415f1842cd
commit
5e6ad27f71
@ -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<EFBFBD>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<EFBFBD>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
|
||||
|
@ -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."
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user