Jupyter Book Questions

  1. Could we add “Jupyter Book” as a category here?
  2. How about Gitter support?
  3. I want my notebook to include a cell that will have a run-time error.
    Is it possible to have jupyter-book build continue to execute the rest of the notebook? I want readers to see what they will get when executing such a cell.
1 Like

I have found that Discussions is being used in the executablebooks org.

I have a work-around, semi-satisfactory for question 3. Catch the exception and

print(sys.exc_info())

There was also a discussion around disabling the execution of a code cell when nbclient executes the notebook.

1 Like

1sys.settrace ;
2jupyter-notebook --pdb and set
sys.breakpointhook
sys.displayhook
sys.excepthook
sys.unraisablehook
3write a sophisticated IPython magic call
4commit into IPython master branch