From 00fe49156d04950ac0d478e00edccd59375d45ec Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Wed, 4 Jun 2025 13:07:18 +0200 Subject: [PATCH] fix pip for adventurelog --- install/adventurelog-install.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/install/adventurelog-install.sh b/install/adventurelog-install.sh index 26154153d..1ec587ee0 100644 --- a/install/adventurelog-install.sh +++ b/install/adventurelog-install.sh @@ -79,11 +79,10 @@ EOF cd /opt/adventurelog/backend/server mkdir -p /opt/adventurelog/backend/server/media $STD uv venv /opt/adventurelog/backend/server/.venv -$STD /opt/adventurelog/backend/server/.venv/bin/python -m pip install --upgrade pip -$STD /opt/adventurelog/backend/server/.venv/bin/python -m pip install -r requirements.txt -$STD /opt/adventurelog/backend/server/.venv/bin/python manage.py collectstatic --noinput -$STD /opt/adventurelog/backend/server/.venv/bin/python manage.py migrate -$STD /opt/adventurelog/backend/server/.venv/bin/python manage.py download-countries +$STD uv pip install -r requirements.txt +$STD uv run python manage.py collectstatic --noinput +$STD uv run python manage.py migrate +$STD uv run python manage.py download-countries cat </opt/adventurelog/frontend/.env PUBLIC_SERVER_URL=http://$LOCAL_IP:8000 BODY_SIZE_LIMIT=Infinity