Skip to content

Commit e3bc10d

Browse files
authored
Add registered installation instructions (#161)
1 parent 8eb3bda commit e3bc10d

2 files changed

Lines changed: 18 additions & 2 deletions

File tree

DifferentiationInterface/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ We also provide some experimental backends ourselves:
5353

5454
## Installation
5555

56-
In a Julia REPL, run
56+
Until the package is registered, you need to install it from the GitHub repo:
5757

5858
```julia
5959
julia> using Pkg
@@ -64,6 +64,14 @@ julia> Pkg.add(
6464
)
6565
```
6666

67+
Once the package is registered, you will be able to do:
68+
69+
```julia
70+
julia> using Pkg
71+
72+
julia> Pkg.add("DifferentiationInterface")
73+
```
74+
6775
## Example
6876

6977
```jldoctest readme

DifferentiationInterfaceTest/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Make it easy to know, for a given function:
2929

3030
## Installation
3131

32-
In a Julia REPL, run
32+
Until the package is registered, you need to install it from the GitHub repo:
3333

3434
```julia
3535
julia> using Pkg
@@ -44,3 +44,11 @@ julia> Pkg.add(
4444
subdir="DifferentiationInterfaceTest"
4545
)
4646
```
47+
48+
Once the package is registered, you will be able to do:
49+
50+
```julia
51+
julia> using Pkg
52+
53+
julia> Pkg.add("DifferentiationInterfaceTest")
54+
```

0 commit comments

Comments
 (0)