fix(soulsync): use uv pip instead of missing venv pip

This commit is contained in:
MickLesk
2026-04-02 22:41:25 +02:00
parent c04e0141b9
commit 81bdfe5eaa
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ fetch_and_deploy_gh_release "soulsync" "Nezreka/SoulSync" "tarball"
msg_info "Setting up Application" msg_info "Setting up Application"
cd /opt/soulsync cd /opt/soulsync
$STD uv venv /opt/soulsync/.venv --python 3.11 $STD uv venv /opt/soulsync/.venv --python 3.11
$STD /opt/soulsync/.venv/bin/pip install -r requirements-webui.txt $STD uv pip install -r requirements-webui.txt --python /opt/soulsync/.venv/bin/python
mkdir -p /opt/soulsync/{config,data,logs} mkdir -p /opt/soulsync/{config,data,logs}
msg_ok "Set up Application" msg_ok "Set up Application"

View File

@@ -14,7 +14,7 @@ network_check
update_os update_os
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
$STD apt install -y build-essential python3 $STD apt install -y build-essential
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
NODE_VERSION="24" setup_nodejs NODE_VERSION="24" setup_nodejs