
Jupyter Days 2020
Marie-Hélène BurleYou can launch Jupyter notebook or Jupyter lab by running in the terminal one of:
jupyter notebookjupyter labAlternatively, you can launch them from within Julia with one of:
using IJulia
notebook()using IJulia
jupyterlab()
syzygy does not have the Julia kernel installed at this point, so I will show a basic example of a Jupyter notebook with Julia from my machine.
.jl scriptjupyter nbconvert --to script julia_notebook.ipynb.jl scriptusing NBInclude
@nbinclude("julia_notebook.ipynb")Julia scripts written with the proper syntax can be converted to any of: markdown pages (e.g. for package documentation), Julia code cleaned of all metadata, and Jupyter notebooks
Let’s have a look at their demo example
Let’s look at their demo example
