Installation

This package requires Julia v1.10.10 or later. Once a sufficient version of Julia is installed, call Julia and open up the REPL.

$ julia

               _
   _       _ _(_)_     |  Documentation: https://docs.julialang.org
  (_)     | (_) (_)    |
   _ _   _| |_  __ _   |  Type "?" for help, "]?" for Pkg help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 1.12.7 (2026-08-15)
 _/ |\__'_|_|_|\__'_|  |  Official https://julialang.org release
|__/                   |


julia>

The package can be easily installed by entering Pkg mode of the REPL (type ] in the REPL) and running the command add AdaptEllipticalSliceSampler.

Alternatively one can install the package directly from the GitHub repository as follows:

julia> using Pkg
julia> Pkg.add(url = "https://github.com/ndmarco/AdaptEllipticalSliceSampler.jl") Cloning git-repo `https://github.com/ndmarco/AdaptEllipticalSliceSampler.jl` Updating git-repo `https://github.com/ndmarco/AdaptEllipticalSliceSampler.jl` ERROR: `path` and `url` are conflicting specifications

Once the package is installed, checkout one of the tutorials to get started.