From 5f186364a066ebdc5e62c9c3ab9965d1c6f9040b Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 15 Apr 2025 09:09:16 +0200 Subject: [PATCH] Update musicassistant-install.sh --- install/musicassistant-install.sh | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/install/musicassistant-install.sh b/install/musicassistant-install.sh index b80739e..66bad57 100644 --- a/install/musicassistant-install.sh +++ b/install/musicassistant-install.sh @@ -14,22 +14,22 @@ update_os msg_info "Installing Dependencies" $STD apt-get install -y \ - ffmpeg \ - build-essential \ - libffi-dev \ - libssl-dev \ - libjpeg-dev \ - zlib1g-dev \ - pkg-config + ffmpeg \ + build-essential \ + libffi-dev \ + libssl-dev \ + libjpeg-dev \ + zlib1g-dev \ + pkg-config msg_ok "Installed Dependencies" msg_info "Setup Python3" $STD apt-get install -y \ - python3 \ - python3-dev \ - python3-pip \ - python3-setuptools \ - python3-venv + python3 \ + python3-dev \ + python3-pip \ + python3-setuptools \ + python3-venv rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED msg_ok "Setup Python3" @@ -38,6 +38,7 @@ $STD fetch_and_deploy_gh_release music-assistant/server cd /opt/musicassistant $STD python3 -m venv .venv $STD source .venv/bin/activate +$STD pip install uv $STD pip install --upgrade pip uv $STD uv pip install . msg_ok "Setup Music Assistant"