diff --git a/DifferentiationInterface/README.md b/DifferentiationInterface/README.md index a1869f8e7..7042ca0f8 100644 --- a/DifferentiationInterface/README.md +++ b/DifferentiationInterface/README.md @@ -53,7 +53,7 @@ We also provide some experimental backends ourselves: ## Installation -In a Julia REPL, run +Until the package is registered, you need to install it from the GitHub repo: ```julia julia> using Pkg @@ -64,6 +64,14 @@ julia> Pkg.add( ) ``` +Once the package is registered, you will be able to do: + +```julia +julia> using Pkg + +julia> Pkg.add("DifferentiationInterface") +``` + ## Example ```jldoctest readme diff --git a/DifferentiationInterfaceTest/README.md b/DifferentiationInterfaceTest/README.md index b1af9aae3..27a684a40 100644 --- a/DifferentiationInterfaceTest/README.md +++ b/DifferentiationInterfaceTest/README.md @@ -29,7 +29,7 @@ Make it easy to know, for a given function: ## Installation -In a Julia REPL, run +Until the package is registered, you need to install it from the GitHub repo: ```julia julia> using Pkg @@ -44,3 +44,11 @@ julia> Pkg.add( subdir="DifferentiationInterfaceTest" ) ``` + +Once the package is registered, you will be able to do: + +```julia +julia> using Pkg + +julia> Pkg.add("DifferentiationInterfaceTest") +```