How to export current notebook in HTML on Jupyter

By looking at nbconvert docs, you’ll see that you can use –to html method:

import os

os.system('jupyter nbconvert --to html yourNotebook.ipynb')

This will create a yourNotebook.html file inside yourNotebook.ipynb folder.

Leave a Comment

File not found.