From 12a6055ea3139625b536dbe577121bf5dda64b73 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 20 Jun 2025 13:39:45 +0200 Subject: [PATCH] set syslinks for jupyter to prevent issues --- install/jupyternotebook-install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/jupyternotebook-install.sh b/install/jupyternotebook-install.sh index 4b8229d7c..a9a2eca8f 100644 --- a/install/jupyternotebook-install.sh +++ b/install/jupyternotebook-install.sh @@ -22,6 +22,9 @@ $STD uv venv /opt/jupyter/.venv $STD /opt/jupyter/.venv/bin/python -m ensurepip --upgrade $STD /opt/jupyter/.venv/bin/python -m pip install --upgrade pip $STD /opt/jupyter/.venv/bin/python -m pip install jupyter +ln -s /opt/jupyter/.venv/bin/jupyter /usr/local/bin/jupyter +ln -s /opt/jupyter/.venv/bin/jupyter-lab /usr/local/bin/jupyter-lab +ln -s /opt/jupyter/.venv/bin/jupyter-notebook /usr/local/bin/jupyter-notebook msg_ok "Installed Jupyter" msg_info "Creating Service"