Skip to main content

Launch a Notebook

Start a Jupyter notebook server on Lyceum Cloud:
lyceum notebook launch
This starts a notebook server and outputs the URL to connect to.

Options

OptionDescriptionDefault
--machine, -mMachine type (cpu, gpu.a100, gpu.h100)cpu
--timeout, -tSession timeout in seconds (max 600)600
--image, -iCustom Jupyter imagejupyter/base-notebook:latest
--tokenJupyter notebook tokenlyceum
--port, -pPort for Jupyter server8888

Examples

# Launch with GPU
lyceum notebook launch -m gpu.a100

# Launch with a data science image
lyceum notebook launch -i jupyter/scipy-notebook:latest

# Launch with custom token and timeout
lyceum notebook launch --token mysecrettoken -t 300

Manage Notebooks

# List running notebooks
lyceum notebook list

# Stop a notebook
lyceum notebook stop <execution_id>
lyceum notebook list shows execution ID, machine type, status, notebook URL, and time remaining.
Notebooks have a maximum session timeout of 600 seconds (10 minutes). For longer sessions, consider using a VM.