Skip to content

Latest commit

 

History

History
 
 

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

FMI.jl Logo

Structure

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).

Getting Started

Install Jupyter in Visual Studio Code

The Jupyter Notebooks extension for Visual Studio Code can be here.

Add Julia Kernel to Jupyter

To run Julia as kernel in a jupyter notebook it is necessary to add the IJulia package.

  1. Start the Julia REPL.

    julia
    
  2. Select your environment.

    using Pkg
    Pkg.activate("Your Env")
  3. Add and build the IJulia package by typing inside the Julia REPL.

    using Pkg
    Pkg.add("IJulia")
    Pkg.build("IJulia")
  4. Now you should be able to choose a Julia kernel in a Jupyter notebook.

More information can be found here.