Skip to main content

๐Ÿ“˜ Running Jupyter Notebooks

Jupyter Notebooks is an interactive Python environment.

Cellsโ€‹

Cells in a Jupyter notebook are a modular unit of code or text that you can execute and view outputs for.

Running a cellโ€‹

To run a cell in a Jupyter notebook, hover over it and click the Run icon that appears against the cell.

Run a cell

When a cell is running, you will see a loading spinner in the bottom left corner of the cell.

A running cell

Successful cell runsโ€‹

When a cell is finished running successfully, you will see a green check mark appear in the bottom left corner of the cell.

Successful cell run

Erroneous cell runsโ€‹

If an error occurred while running a cell, you will see a red cross appear in the bottom left corner of the cell, and also an error traceback after the cell.

Erroneous cell run

To fix errors, you may need to update previous cells. If you do, re-run all the cells following the one(s) you updated.

Interrupting a cellโ€‹

To interrupt a running cell, click the Stop icon that you see against the cell while it is running.

Interrupt cell run
warning

The UI might differ slightly if you are running Jupyter Notebooks in a different IDE. Refer to the appropriate documentation if running the notebook in a different environment.