-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.jl
41 lines (34 loc) · 1.61 KB
/
README.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# # SparseArraysBase.jl
#
# [](https://ITensor.github.io/SparseArraysBase.jl/stable/)
# [](https://ITensor.github.io/SparseArraysBase.jl/dev/)
# [](https://github.com/ITensor/SparseArraysBase.jl/actions/workflows/Tests.yml?query=branch%3Amain)
# [](https://codecov.io/gh/ITensor/SparseArraysBase.jl)
# [](https://github.com/invenia/BlueStyle)
# [](https://github.com/JuliaTesting/Aqua.jl)
# ## 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.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.
# Then, the package can be added as usual through the package manager:
#=
```julia
julia> Pkg.add("SparseArraysBase")
```
=#
# ## Examples
using SparseArraysBase: SparseArraysBase
# Examples go here.