This repository hosts a registry of my Julia packages.
Using this registry depends on Julia version.
To add this registry in Julia (version ≥ 1.1, see below for older versions):
using Pkg
pkg"registry add https://github.com/emmt/EmmtRegistry"If you execute these commands in a fresh Julia installation, you may also want to add Julia's General Registry with all official packages of Julia. This can be done by:
using Pkg
pkg"registry add General"In a script (e.g., for CI testing):
using Pkg
Pkg.Registry.add("General")
Pkg.Registry.add(RegistrySpec(url = "https://github.com/emmt/EmmtRegistry"))Move into directory ~/.julia/registries/ and clone this registry:
cd ~/.julia/registries/
git clone https://github.com/emmt/EmmtRegistryalso make sure that you have the General (or equivalent) registry, otherwise:
cd ~/.julia/registries/
git clone https://github.com/JuliaRegistries/General.git