Skip to content
This repository has been archived by the owner on Dec 20, 2019. It is now read-only.

Latest commit

 

History

History
39 lines (25 loc) · 888 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 888 Bytes

jupyterlab-debugger

Binder

Debugger extension for JupyterLab.

Prerequisites

  • JupyterLab 1.1+

Development

To get started:

# create a new conda environment
conda create -n jupyterlab-debugger -c conda-forge nodejs xeus-python ptvsd

# activate the conda environment
conda activate jupyterlab-debugger

# install JupyterLab 1.1 alpha
python -m pip install --pre jupyterlab

# create the ptvsd directory for the logs in the folder where JupyterLab is started
mkdir xpython_debug_logs

# install dependencies
jlpm

# build Typescript source
jlpm build

# install the development version of the extension
jupyter labextension install .

# start JupyterLab with the kernel logs enabled
XEUS_LOG=1 jupyter lab --no-browser --watch