From 15e628f9bb6e106549adb9e80e5b585dc6fa39b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Thu, 30 Apr 2026 19:00:44 +0200 Subject: [PATCH] Update pip install command to use requirements.txt --- install/soulsync-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/soulsync-install.sh b/install/soulsync-install.sh index 9df40842a..00bfaf171 100644 --- a/install/soulsync-install.sh +++ b/install/soulsync-install.sh @@ -29,7 +29,7 @@ fetch_and_deploy_gh_release "soulsync" "Nezreka/SoulSync" "tarball" msg_info "Setting up Application" cd /opt/soulsync $STD uv venv /opt/soulsync/.venv --python 3.11 -$STD uv pip install -r requirements-webui.txt --python /opt/soulsync/.venv/bin/python +$STD uv pip install -r requirements.txt --python /opt/soulsync/.venv/bin/python mkdir -p /opt/soulsync/{config,data,logs} msg_ok "Set up Application"