清空jupyter notebook所有输出的命令 - xd21303/Notebook GitHub Wiki

清空jupyter notebook输出的命令:

jupyter nbconvert --ClearOutputPreprocessor.enabled=True --inplace xxxx.ipynb

如果想把清空所有输出后的源代码文件另存为,命令为:

jupyter nbconvert --ClearOutputPreprocessor.enabled=True --to notebook --output==NotebookNoOut 另存为的文件名.ipynb

参考https://blog.csdn.net/CherryChenieth/article/details/123571444