-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,21 +9,29 @@ | |
|
||
# ## Installation instructions | ||
|
||
# This package resides in the `ITensor/ITensorRegistry` 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/BroadcastMapConversion.jl") | ||
julia> Pkg.add(url="https://github.com/ITensor/NestedPermutedDimsArrays.jl") | ||
julia> Pkg.add(url="https://github.com/ITensor/TypeParameterAccessors.jl") | ||
julia> Pkg.add(url="https://github.com/ITensor/SparseArraysBase.jl") | ||
julia> Pkg.Registry.add(url="https://github.com/ITensor/ITensorRegistry") | ||
``` | ||
=# | ||
# or: | ||
#= | ||
```julia | ||
julia> Pkg.Registry.add(url="[email protected]:ITensor/ITensorRegistry.git") | ||
``` | ||
=# | ||
# 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. | ||
|
||
julia> Pkg.add(url="https://github.com/ITensor/TensorAlgebra.jl") | ||
# Then, the package can be added as usual through the package manager: | ||
|
||
julia> Pkg.add(url="https://github.com/ITensor/NamedDimsArrays.jl") | ||
#= | ||
```julia | ||
julia> Pkg.add("NamedDimsArrays") | ||
``` | ||
=# | ||
|
||
|