From 974bc57f623e5c972c3cfc8eff712c9dd67d8af1 Mon Sep 17 00:00:00 2001 From: Bence Bagi Date: Tue, 23 Mar 2021 17:03:41 +0000 Subject: [PATCH] Add "url=..." in installation instructions. I got an error without it on 1.5 and 1.6. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8e3e4c6..3711947 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,11 @@ with calls to methods elsewhere (as in the case of `von_mises_cdf`). On Julia v0.7 and above: ```julia -julia> import Pkg; Pkg.add("https://github.com/anowacki/CircStats.jl") +julia> import Pkg; Pkg.add(url="https://github.com/anowacki/CircStats.jl") ``` On older versions: ```julia julia> Pkg.clone("https://github.com/anowacki/CircStats.jl") -``` \ No newline at end of file +```