How to export an IPython notebook to HTML for a blog post?

前端 未结 4 1581
离开以前
离开以前 2020-12-05 02:31

What is the best way to get an ipython notebook into html format for use in a blog post?

It is easy to turn an ipython notebook into a PDF, but I\'d rather publish a

相关标签:
4条回答
  • 2020-12-05 02:40

    All the above answers seems outdated. Here is the most modern solution taken from the official nbconvertdocs.

    $ jupyter nbconvert --to FORMAT notebook.ipynb

    The default output format is html, for which the --to argument may be omitted:

    $ jupyter nbconvert notebook.ipynb

    0 讨论(0)
  • 2020-12-05 02:44

    One step further from the answer above. To create a PDF file,

    1. create a tex file

      nbconvert -f latex your_notebook.ipynb
      
    2. convert tex to pdf :

      pdflatex your_notebook.tex
      
    0 讨论(0)
  • 2020-12-05 02:53

    Click on file > Download > html

    0 讨论(0)
  • 2020-12-05 02:56

    The right way is described in: http://blog.fperez.org/2012/09/blogging-with-ipython-notebook.html. Then you can do nbconvert -f blogger-html your_notebook.ipynb to get the html code for your post.

    0 讨论(0)
提交回复
热议问题