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