From 7880f53d8bca9e47ad2df5a457184ecf37d0dd95 Mon Sep 17 00:00:00 2001 From: Benjamin Labrecque Date: Fri, 17 Jul 2026 12:39:50 +0200 Subject: [PATCH] chore: don't recreate env if it already exists --- bin/start_service.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/start_service.sh b/bin/start_service.sh index f56ea77..8a12d19 100755 --- a/bin/start_service.sh +++ b/bin/start_service.sh @@ -34,7 +34,7 @@ echo "App dir: ${APP_DIR}" # TODO: do we need this? pyepics is not PSI specific... # (re)create venv using site-packages -- uses system-wide installed epics -uv venv --system-site-packages ${APP_DIR}/.venv --clear +# uv venv --system-site-packages ${APP_DIR}/.venv --clear # install custom python packages from pyproject.toml / uv.lock uv sync --frozen --project ${APP_DIR} # activate .venv, this works in conjunction with the conda environment