22
33[ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://ITensor.github.io/DiagonalArrays.jl/stable/ )
44[ ![ Dev] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://ITensor.github.io/DiagonalArrays.jl/dev/ )
5- [ ![ Build Status] ( https://github.com/ITensor/DiagonalArrays.jl/actions/workflows/CI .yml/badge.svg?branch=main )] ( https://github.com/ITensor/DiagonalArrays.jl/actions/workflows/CI .yml?query=branch%3Amain )
5+ [ ![ Build Status] ( https://github.com/ITensor/DiagonalArrays.jl/actions/workflows/Tests .yml/badge.svg?branch=main )] ( https://github.com/ITensor/DiagonalArrays.jl/actions/workflows/Tests .yml?query=branch%3Amain )
66[ ![ Coverage] ( https://codecov.io/gh/ITensor/DiagonalArrays.jl/branch/main/graph/badge.svg )] ( https://codecov.io/gh/ITensor/DiagonalArrays.jl )
77[ ![ Code Style: Blue] ( https://img.shields.io/badge/code%20style-blue-4495d1.svg )] ( https://github.com/invenia/BlueStyle )
88[ ![ Aqua] ( https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg )] ( https://github.com/JuliaTesting/Aqua.jl )
@@ -11,20 +11,24 @@ A n-dimensional diagonal array type in Julia.
1111
1212## Installation instructions
1313
14+ This package resides in the ` ITensor/ITensorRegistry ` local registry.
15+ In order to install, simply add that registry through your package manager.
16+ This step is only required once.
1417``` julia
1518julia> using Pkg: Pkg
1619
17- julia> using Pkg: Pkg
18-
19- julia > Pkg . add (url = " https://github.com/ITensor/BroadcastMapConversion.jl " )
20-
21- julia> Pkg. add (url= " https:// github.com/ ITensor/NestedPermutedDimsArrays.jl " )
22-
23- julia > Pkg . add (url = " https://github.com/ITensor/TypeParameterAccessors.jl " )
20+ julia> Pkg. Registry . add (url = " https://github.com/ITensor/ITensorRegistry " )
21+ ```
22+ or:
23+ ``` julia
24+ julia> Pkg. Registry . add (url= " git@ github.com: ITensor/ITensorRegistry.git " )
25+ ```
26+ if you want to use SSH credentials, which can make it so you don't have to enter your Github ursername and password when registering packages.
2427
25- julia > Pkg . add (url = " https://github.com/ITensor/SparseArraysBase.jl " )
28+ Then, the package can be added as usual through the package manager:
2629
27- julia> Pkg. add (url= " https://github.com/ITensor/DiagonalArrays.jl" )
30+ ``` julia
31+ julia> Pkg. add (" DiagonalArrays" )
2832```
2933
3034## Examples
0 commit comments