JupyterLab

JupyterLab

JupyterLab is the latest web-based interactive development environment for notebooks, code, and data. Its flexible interface allows users to configure and arrange workflows in data science, scientific computing, computational journalism, and machine learning. A modular design invites extensions to expand and enrich functionality.

Install

1
2
3
4
5
6
7
micromamba activate venv 
micromamba install python=3.11
micromamba install -c conda-forge jupyterlab
micromamba install anaconda::ipykernel
micromamba install nodejs
micromamba install -c conda-forge jupyter-resource-usage
micromamba install -c conda-forge jupyterlab_execute_time

Execute

1
$ jupyter-lab

Added other kernels to Jupyter

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

micromamba activate new-env-1

# install python kernel for Jupyter
# avoid installation of any jupyter related modules
micromamba install anaconda::ipykernel

# added the kernel to Jupyter and name it as "Environment(myproject)"
python -m ipykernel install --user --name=mnew-env-1 --display-name='Environment(new-env-1)'

micromamba deactivate

micromamba acitvate new-env-2

# install python kernel for Jupyter
# avoid installation of any jupyter related modules
micromamba install anaconda::ipykernel

# added the kernel to Jupyter and name it as "Environment(myproject)"
python -m ipykernel install --user --name=mnew-env-2 --display-name='Environment(new-env-2)'

To access the remote machine with a browser

To access the remote machine with a browser the notebook must listen on an external facing port (not localhost). You will need the same invocation if want to run the Jupyter notebook on a container. In that case it is something like this:

1
jupyter-notebook --no-browser --port 11013 --ip=0.0.0.0

To listen only in localhost then you can omit the IP

1
jupyter notebook --no-browser --port=8080

Monitor resource usage with GPU Dashboard in Jupyter

A GPU dashboard is available for JupyterLab for showing the resource usage of GPU in real time, side by side with cells in your notebook. It is particularly useful in identifying any bottleneck or issues during code development.

You may activate your conda or python virtual environment for your kernel and run the following once to install the GPU dashboard.

1
pip install jupyterlab-nvdashboard

References


JupyterLab
https://waipangsze.github.io/2024/07/31/JupyterLab/
Author
wpsze
Posted on
July 31, 2024
Updated on
January 22, 2025
Licensed under