Examples can be found in the examples folder in the examples branch or the examples section of the documentation. All examples are available as Julia-Script (.jl), Jupyter-Notebook (.ipynb) and Markdown (.md).
The Jupyter Notebooks extension for Visual Studio Code can be here.
To run Julia as kernel in a jupyter notebook it is necessary to add the IJulia package.
-
Start the Julia REPL.
julia
-
Select your environment.
using Pkg Pkg.activate("Your Env")
-
Add and build the IJulia package by typing inside the Julia REPL.
using Pkg Pkg.add("IJulia") Pkg.build("IJulia")
-
Now you should be able to choose a Julia kernel in a Jupyter notebook.
More information can be found here.