We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c10b9e5 commit 5ab52feCopy full SHA for 5ab52fe
SetupPrivateJupyterLab.sh
@@ -19,14 +19,16 @@ if [ "$OWNER" != "" ] && [ "$CONNECT_GROUP" != "" ]; then
19
cd /home/$OWNER
20
21
chown -R $OWNER: /venv
22
-
+ # Install https://github.com/astral-sh/uv for users editing environment later
23
+ curl -LsSf https://astral.sh/uv/install.sh | sh
24
+
25
unset JUPYTER_PATH
26
which jupyter
27
unset JUPYTER_CONFIG_DIR
28
ls /root/.jupyter/jupyter_notebook_config.py
29
30
31
# Invoke Jupyter lab as the user
32
su $OWNER -c "jupyter lab --ServerApp.root_dir=/home/${OWNER} --ServerApp.port=9999 --ServerApp.ip='0.0.0.0' --no-browser --config=/root/.jupyter/jupyter_notebook_config.py"
33
-fi
34
+fi
0 commit comments