Cell Execution TimeoutΒΆ
By default, nbconvert
(which is used to execute the notebooks during
the Sphinx build process) will give a cell 30 seconds to execute before
it times out.
If you would like to change the amount of time given for a cell, you can change the timeout length for all notebooks by setting the following option in conf.py:
nbsphinx_timeout = 60 # Time in seconds; use -1 for no timeout
Or change the timeout length on a per-notebook basis by adding this to the notebook’s JSON metadata:
"nbsphinx": {
"timeout": 60
},
Alternatively, you can manually execute the notebook in question and save the results, see the pre-executed example notebook.