Update unix_install.sh

This commit is contained in:
BluTiger 2024-09-23 16:55:44 +02:00 committed by GitHub
parent f9f278ec3f
commit 43c37a88b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -86,9 +86,10 @@ else
fi
if [ -d ".venv/" ]; then
echo ".venv exists."
echo ".venv exists. Installing requirements.txt. ..."
.venv/bin/pip install -r requirements.txt
else
echo "Making .venv and installing requirements.txt."
echo "Making .venv and installing requirements.txt. ..."
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
# Detect the package manager
if command_exists apt; then