如何将ipynb转换为html,md,pdf等格式
程序员文章站
2022-05-28 15:34:17
...
1、支持文件格式
asciidoc, custom, html, latex, markdown, notebook, pdf, python, rst, script, slides
2、转换方式
jupyter nbconvert --to type filename
3、例子
(1)ipynb转为html格式
jupyter nbconvert --to html notebook.ipynb
(2)ipynb转换为markdown格式
jupyter nbconvert --to markdown notebook.ipynb
(3)ipython转换为pdf格式
jupyter nbconvert --to pdf notebook.ipynb
(4)ipynb转换为latex格式
jupyter nbconvert --to letex notebook.ipynb
上一篇: mysql修改数据库密码