Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.58 KB

File metadata and controls

44 lines (29 loc) · 1.58 KB

JupyterLab: Host a Notebook

This workflow launches a JupyterLab server that can be accessed remotely for interactive development and data science work. It runs a single task that starts JupyterLab on port 6060 configured for remote access, allowing you to work with notebooks, scripts, and datasets in a familiar Jupyter environment.

Running this workflow

curl -O https://raw.githubusercontent.com/NVIDIA/OSMO/main/cookbook/integration_and_tools/jupyterlab/jupyter.yaml
osmo workflow submit jupyter.yaml

Note that this workflow will run for 2 hours.

Accessing JupyterLab

Once the task is running, run the port-forward command:

# Get the workflow ID from the submit command output
osmo workflow port-forward <workflow-id> notebook --port 6060:6060

Once this command is running, open your browser and navigate to http://localhost:6060 to access the JupyterLab interface.

JupyterLab Interface