There was an error while loading. Please reload this page.
1 parent 383dc62 commit cd077bcCopy full SHA for cd077bc
jupyterlab/run.sh
@@ -19,7 +19,10 @@ if ! command -v jupyter-lab > /dev/null 2>&1; then
19
fi
20
# install jupyterlab
21
pipx install -q jupyterlab
22
- pipx runpip jupyterlab install -q jupyterlab-git
+ if [ "${JUPYTER_ADDITIONAL_PACKAGES}" != "" ]; then
23
+ printf "%s\n\n" "Installation additional packages ${JUPYTER_ADDITIONAL_PACKAGES}"
24
+ pipx runpip jupyterlab install -q ${JUPYTER_ADDITIONAL_PACKAGES}
25
+ fi
26
printf "%s\n\n" "🥳 jupyterlab has been installed"
27
else
28
printf "%s\n\n" "🥳 jupyterlab is already installed"
0 commit comments