commit 30075e42953d9c96d3fdbe2371871e9842cac057 parent 66d4ed952d6833073bfc717962b28be545aa7417 Author: Erik Loualiche <eloualic@umn.edu> Date: Tue, 27 May 2025 14:56:43 -0500 added to registry and put this on readme Diffstat:
| M | README.md | | | 16 | ++++++++++++---- |
1 file changed, 12 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md @@ -30,13 +30,21 @@ An easier way is to install the package directly from julia. #### Julia package -TigerFetch.jl is not yet a registered package. -You can install it from github via + +`TigerFetch.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 -import Pkg -Pkg.add(url="https://github.com/louloulibs/TigerFetch.jl") +> using Pkg, LocalRegistry +> pkg"registry add https://github.com/LouLouLibs/loulouJL.git" +> Pkg.add("TigerFetch") ``` +If you don't want to add a new registry, you can install it directly from github: +```julia +> import Pkg; Pkg.add("https://github.com/louloulibs/TigerFetch.jl#main") +``` + + Then install the cli tool with ```julia using TigerFetch; TigerFetch.comonicon_install()