【python】清空jupyter notebook所有输出的命令

在跑六百万数据集时加了print,导致输出的内容太多,不仅跑了几个小时,还让ipynb文件非常大根本打不开!!

清空jupyter notebook输出的命令:

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

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

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

MacOs下直接在terminal输入命令就可以了。
Win可以在Anaconda Prompt里输入(没测试过不知道cmd可不可以哈)

你可能感兴趣的:(#,奇奇怪怪bug,python,jupyter,开发语言)