Skip to content

Commit cd077bc

Browse files
authored
Update run.sh
1 parent 383dc62 commit cd077bc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

jupyterlab/run.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ if ! command -v jupyter-lab > /dev/null 2>&1; then
1919
fi
2020
# install jupyterlab
2121
pipx install -q jupyterlab
22-
pipx runpip jupyterlab install -q jupyterlab-git
22+
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
2326
printf "%s\n\n" "🥳 jupyterlab has been installed"
2427
else
2528
printf "%s\n\n" "🥳 jupyterlab is already installed"

0 commit comments

Comments
 (0)