commit dac0c742bf528d0e7520be6515a015c588008384 parent c6a898a3fd9ba495cd3a78e4afb07a0b428c24ba Author: Erik Loualiche <[email protected]> Date: Tue, 27 May 2025 14:53:15 -0500 offer new registry installation Diffstat:
| M | README.md | | | 14 | +++++++++----- |
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md @@ -16,12 +16,16 @@ So far the package provides a one main function: ## Installation -`BazerUtils.jl` is a registered package. You can install from the main julia registry via the julia package manager +`BazerUtils.jl` is a registered package. +You can install from the my julia registry [`loulouJL`](https://github.com/LouLouLibs/loulouJL) via the julia package manager: +```julia +> using Pkg, LocalRegistry +> pkg"registry add https://github.com/LouLouLibs/loulouJL.git" +> Pkg.add("BazerUtils") +``` + +If you don't want to add a new registry, you can install it directly from github: ```julia -> import Pkg; Pkg.add("BazerUtils.jl") -# or in package mode in the REPL -pkg> add BazerUtils -# or from the main github branch > import Pkg; Pkg.add("https://github.com/louloulibs/BazerUtils.jl#main") ```