Installation Guide

Installation guide

AllanDeviations.jl is registered in Metadata.jl. Therefore it is part of the official, public package system.

You can download and install it in your global Julia installation (or local project) via opening a Julia Console/REPL and type:

using Pkg
Pkg.add("AllanDeviations")

This installs all necessary files. This only needs to be done once!

Afterwards, the package can be loaded by

using AllanDeviations

Updating

The package installation can be updated to the newest version with:

using Pkg
Pkg.update("AllanDeviations")

Or even by updating all installed packages

using Pkg
Pkg.update()