From 3aa1e7713810ae806204da885551a3f921928a5e Mon Sep 17 00:00:00 2001 From: Lukas Devos Date: Fri, 29 Nov 2024 17:46:14 -0500 Subject: [PATCH] Update README --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 020fdf6..5940677 100644 --- a/README.md +++ b/README.md @@ -12,14 +12,18 @@ tensors and allocating as little data as possible. ## Installation instructions +This package resides in the `ITensor/JuliaRegistry` local registry. +In order to install, simply add that registry through your package manager. +This step is only required once. ```julia julia> using Pkg: Pkg -julia> Pkg.add(url="https://github.com/ITensor/TypeParameterAccessors.jl") - -julia> Pkg.add(url="https://github.com/ITensor/UnspecifiedTypes.jl") +julia> Pkg.Registry.add(url="https://github.com/ITensor/JuliaRegistry") +``` +Then, the package can be added as usual through the package manager: -julia> Pkg.add(url="https://github.com/ITensor/UnallocatedArrays.jl") +```julia +julia> Pkg.add("UnallocatedArrays") ``` ## Examples @@ -28,8 +32,6 @@ julia> Pkg.add(url="https://github.com/ITensor/UnallocatedArrays.jl") using UnallocatedArrays: UnallocatedArrays ```` -Examples go here. - --- *This page was generated using [Literate.jl](https://github.com/fredrikekre/Literate.jl).*