Skip to content

Commit f9f0bfe

Browse files
authored
fix install jupyterlab (#309)
1 parent 1c51c1a commit f9f0bfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jupyter/scripts/install-jupyterlab.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if [[ "$ENABLE_JUPYTER_AI_EXTENSION" == "true" ]]; then
1717
fi
1818

1919
if command -v uv &>/dev/null; then
20-
echo uv pip install --system --no-cache "${PACKAGES[@]}"
20+
uv pip install --system --no-cache "${PACKAGES[@]}"
2121
else
22-
echo pip install --no-cache-dir "${PACKAGES[@]}"
22+
pip install --no-cache-dir "${PACKAGES[@]}"
2323
fi

0 commit comments

Comments
 (0)