Installing Slomo
Install Julia (>= 1.3) from the Julia website.
Download the repository from GitHub
git clone https://github.com/adwasser/Slomo.jl.gitActivate the package and download any dependencies from within Julia
From the shell:
cd Slomo.jl
juliaFrom the Julia REPL:
julia> using Pkg
julia> Pkg.activate(".")
julia> Pkg.instantiate()
julia> Pkg.resolve()Run the tests:
julia> using Pkg
julia> Pkg.test("Slomo")(Optional) Build a system image for faster load times.
This requires the PackageCompiler.jl package.
mkdir build
julia build.jlYou can start Julia with the resulting system image by calling
julia -J /path/to/Slomo.jl/build/sys.sowhere /path/to/Slomo.jl should be replaced by the relevant path to the Slomo installation directory.