nbconvert:导出到另一个目录?

问题描述 投票:2回答:1

我想知道是否可以将Jupyter笔记本导出到与笔记本本身不同的目录中?我正在使用它来构建笔记本的HTML版本,我希望它们在我的GitHub仓库中驻留在docs/下(这是为了利用GH页面)。

jupyter-notebook jupyter nbconvert
1个回答
3
投票

NBConvert的--output-dir论证做到了这一点:https://nbconvert.readthedocs.io/en/latest/install.html

您可以从命令行或Jupyter笔记本中使用它。

命令行:

jupyter nbconvert --output-dir='./docs' --to html my_notebook_to_be_converted.ipynb

从Jupyter笔记本电脑内部:

!jupyter nbconvert --output-dir='./docs' --to html my_notebook_to_be_converted.ipynb

请注意,您不需要使用“--to html”将笔记本转换为html,因为默认输出格式为html。为了清楚起见,我把这个论点包括在内。

© www.soinside.com 2019 - 2024. All rights reserved.