How to "Run all cells above" in VS Code's Python Notebooks

Viewed 736

Is there a way to run all cells above a given cell in VS Code's python notebook working environment?

1 Answers

In the command pallet run the command: Notebook: Execute Above Cells. Create a keyboard shortcut (e.g., alt+A). Then you are done.

Related