How export a Jupyter notebook to HTML from the command line?

后端 未结 3 817
天涯浪人
天涯浪人 2021-02-01 07:52

I\'m writing test visualization program based on test results. I want to run jupyter notebook via terminal and generate html page to show it to user without showing the editabl

3条回答
  •  情深已故
    2021-02-01 08:20

    Also use --execute to get the output

    jupyter nbconvert --execute --to html notebook.ipynb
    

    This produces a notebook.html file.

    The best practice is to keep the output out of the notebook for version control, see: Using IPython notebooks under version control

    But then, if you don't pass --execute, the output won't be present in the HTML, see also: How to run an .ipynb Jupyter Notebook from terminal?

    For an HTML fragment without header: How to export an IPython notebook to HTML for a blog post?

    Tested in Jupyter 4.4.0.

提交回复
热议问题