Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

  Download


If you haven't done so already, download Julia (platform specific instructions can be found here). Next, open the Julia app, which should launch a REPL session, and install IonSim using the following commands: 


using Pkg
Pkg.add("IonSim")

The main way you'll want to interact with IonSim  is inside of a Jupyter notebook . This requires IJulia.jl :


Pkg.add("IJulia")

And finally, if you'd like to follow along with the example notebooks, you'll need at least  PyPlot.jl, an interface to Python's Matplotlib library:


Pkg.add("PyPlot")

  Update


Updating to the latest version of  IonSim is easy:


Pkg.update("IonSim")

  Release Notes


See our release notes on GitHub.