The simplest and best way to share an IPython Notebook (Jupyter Notebook) is to upload it to GitHub. If "it's not enough to upload to GitHub" or "can't upload to GitHub", it seems better to convert it to HTML.
On the command line
ipython nbconvert test.ipynb --to html
Or on IPython Notebopok
!ipython nbconvert test.ipynb --to html
Will create html.
It seems that you can see the result if you pass this much.
Recommended Posts