我想知道是否可以将Jupyter笔记本导出到与笔记本本身不同的目录中?我使用它来构建笔记本的HTML版本,并且我希望它们位于我的GitHub仓库中的docs/
下(这是为了利用GH页面)。
答案 0 :(得分: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 Notebook小区:
!jupyter nbconvert --output-dir='./docs' --to html my_notebook_to_be_converted.ipynb
请注意,您不需要使用“--to html”将笔记本转换为html,因为默认输出格式为html。为了清楚起见,我把这个论点包括在内。