File tree Expand file tree Collapse file tree 2 files changed +30
-18
lines changed Expand file tree Collapse file tree 2 files changed +30
-18
lines changed Original file line number Diff line number Diff line change 9
9
10
10
## Installation instructions
11
11
12
+ This package resides in the ` ITensor/ITensorRegistry ` local registry.
13
+ In order to install, simply add that registry through your package manager.
14
+ This step is only required once.
12
15
``` julia
13
16
julia> using Pkg: Pkg
14
17
15
- julia> Pkg. add (url= " https://github.com/ITensor/BroadcastMapConversion.jl " )
16
-
17
- julia > Pkg . add (url = " https://github.com/ITensor/NestedPermutedDimsArrays.jl " )
18
-
19
- julia> Pkg. add (url= " https:// github.com/ ITensor/TypeParameterAccessors.jl " )
20
-
21
- julia > Pkg . add (url = " https://github.com/ITensor/SparseArraysBase.jl " )
18
+ julia> Pkg. Registry . add (url= " https://github.com/ITensor/ITensorRegistry " )
19
+ ```
20
+ or:
21
+ ``` julia
22
+ julia> Pkg. Registry . add (url= " git@ github.com: ITensor/ITensorRegistry.git " )
23
+ ```
24
+ 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.
22
25
23
- julia > Pkg . add (url = " https://github.com/ITensor/TensorAlgebra.jl " )
26
+ Then, the package can be added as usual through the package manager:
24
27
25
- julia> Pkg. add (url= " https://github.com/ITensor/NamedDimsArrays.jl" )
28
+ ``` julia
29
+ julia> Pkg. add (" NamedDimsArrays" )
26
30
```
27
31
28
32
## Examples
Original file line number Diff line number Diff line change 9
9
10
10
# ## Installation instructions
11
11
12
+ # This package resides in the `ITensor/ITensorRegistry` local registry.
13
+ # In order to install, simply add that registry through your package manager.
14
+ # This step is only required once.
12
15
#=
13
16
```julia
14
17
julia> using Pkg: Pkg
15
18
16
- julia> Pkg.add(url="https://github.com/ITensor/BroadcastMapConversion.jl")
17
-
18
- julia> Pkg.add(url="https://github.com/ITensor/NestedPermutedDimsArrays.jl")
19
-
20
- julia> Pkg.add(url="https://github.com/ITensor/TypeParameterAccessors.jl")
21
-
22
- julia> Pkg.add(url="https://github.com/ITensor/SparseArraysBase.jl")
19
+ julia> Pkg.Registry.add(url="https://github.com/ITensor/ITensorRegistry")
20
+ ```
21
+ =#
22
+ # or:
23
+ #=
24
+ ```julia
25
+ julia> Pkg.Registry.add(url="[email protected] :ITensor/ITensorRegistry.git")
26
+ ```
27
+ =#
28
+ # 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.
23
29
24
- julia> Pkg.add(url="https://github.com/ITensor/TensorAlgebra.jl")
30
+ # Then, the package can be added as usual through the package manager:
25
31
26
- julia> Pkg.add(url="https://github.com/ITensor/NamedDimsArrays.jl")
32
+ #=
33
+ ```julia
34
+ julia> Pkg.add("NamedDimsArrays")
27
35
```
28
36
=#
29
37
You can’t perform that action at this time.
0 commit comments