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.
curl -O https://raw.githubusercontent.com/NVIDIA/OSMO/main/cookbook/integration_and_tools/jupyterlab/jupyter.yaml
osmo workflow submit jupyter.yamlNote that this workflow will run for 2 hours.
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:6060Once this command is running, open your browser and navigate to http://localhost:6060 to access the JupyterLab interface.
