I am using jupyter nbconvert to execute some notebooks, as follows:
jupyter nbconvert --ExecutePreprocessor.timeout=-1 --to notebook --inplace --execute myNotebook.ipynb
The command works fine, however, I am unable to see the progress while the file is executing. It only writes to the notebook after all the notebook finishes. Is it possible to make it write to file after each cell finishes, or ideally write to notebook the same way as when executed from the browser interactively ? This is important when notebook takes days to finish.
Thanks,