Update musicassistant-install.sh

This commit is contained in:
CanbiZ 2025-04-15 09:09:16 +02:00
parent c4cc4df476
commit 5f186364a0

View File

@ -14,22 +14,22 @@ update_os
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
$STD apt-get install -y \ $STD apt-get install -y \
ffmpeg \ ffmpeg \
build-essential \ build-essential \
libffi-dev \ libffi-dev \
libssl-dev \ libssl-dev \
libjpeg-dev \ libjpeg-dev \
zlib1g-dev \ zlib1g-dev \
pkg-config pkg-config
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Setup Python3" msg_info "Setup Python3"
$STD apt-get install -y \ $STD apt-get install -y \
python3 \ python3 \
python3-dev \ python3-dev \
python3-pip \ python3-pip \
python3-setuptools \ python3-setuptools \
python3-venv python3-venv
rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED
msg_ok "Setup Python3" msg_ok "Setup Python3"
@ -38,6 +38,7 @@ $STD fetch_and_deploy_gh_release music-assistant/server
cd /opt/musicassistant cd /opt/musicassistant
$STD python3 -m venv .venv $STD python3 -m venv .venv
$STD source .venv/bin/activate $STD source .venv/bin/activate
$STD pip install uv
$STD pip install --upgrade pip uv $STD pip install --upgrade pip uv
$STD uv pip install . $STD uv pip install .
msg_ok "Setup Music Assistant" msg_ok "Setup Music Assistant"