标签: jupyter-notebook ipython-notebook jupyter nbconvert
我使用以下命令执行" file1.ipynb"并将输出写入" file2.ipynb"。
jupyter nbconvert file1.ipynb --to notebook --execute --output file2.ipynb
出现" file2.ipynb"仅在整个笔记本执行后创建。但是我希望在执行过程中看到已执行单元格的输出(而不是在最后看到它)。
有没有办法在执行每个单元格后更新输出文件?