Skip to content Skip to sidebar Skip to footer

How To Automatically Execute Next Cell Even If An Error Occurs In The Current Cell In Jupyter?

I am running a cell in Jupyter notebook where an error is bound to occur after some time(usually hours). But even after this error occurs, I want the compiler to just move on to th

Solution 1:

There's a Jupyter Notebook nbextensions extension called Runtools which allows you to run all cells and ignore errors with the shortcut Alt + F. See Installing jupyter_contrib_nbextensions on how to install nbextensions and enable extensions like Runtools.


Post a Comment for "How To Automatically Execute Next Cell Even If An Error Occurs In The Current Cell In Jupyter?"