'How to install the version of Jupyter Notebook that includes a debugger

Or is it JupyterLab that includes a notebook-like function that contains the debuggger? I have Windows 10 and Conda and would like to install this in a new environment.



Solution 1:[1]

JupyterLab now ships with a Debugger front-end by default.
See Debugger in JupyterLab documentation.

You can try it in JupyterLab 3.4 by clicking here. When the temporary, remote sessions spins up, open a notebook and click on the bug icon in the upper right side just above the notebook. Toggle open the debug panel by clicking on the larger bug icon on the right side bar. JupyterLab 3.4 is the latest stable release and so things will look a little different than the documentation.

You can bring the short debugger tutorial notebook into your running session by running the following code in a cell in a notebook:

!curl -o debugger.ipynb https://raw.githubusercontent.com/jupyterlab/debugger/dfd6bf9d51a7a0cd78ca54f4173fcf527bd4d7fd/examples/index.ipynb

The notebook will show up in the file navigator panel on the left side shortly after running that. Double-click on it to work through it.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1