From 9f434a9160a31785bd35da90834b206e84a0854e Mon Sep 17 00:00:00 2001 From: Laura Marshall Date: Wed, 11 Dec 2024 01:01:04 +0000 Subject: [PATCH] Update README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 97372c5..a25c6f1 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,15 @@ There are two vignettes within the dssd package to help you get started using `d # Getting `dssd` -We typically aim to keep `dssd` on CRAN, so it can be readily installed from within R-Studio or the R interface. However, at present there is an [issue](https://github.com/DistanceDevelopment/dssd/issues/94) that prevents this. Therefore to obtain `dssd` at present, please use the following code. +The easiest way to get `dssd` is to install it from CRAN within R-studio or the R interface. We endeavour to make all new functionality available on CRAN in a timely manor. However, if you wish to download the development version with the latest updates immediately you can do this using Hadley Wickham's `devtools` package: # First, ensure you have a copy of the `devtools` package: if (!nzchar(system.file(package = "devtools"))) install.packages("devtools") - # then install `dssd` from github: - devtools::install_github("DistanceDevelopment/dssd", build_vignettes = TRUE) + +then install `dssd` from github: + + library(devtools) + install_github("DistanceDevelopment/dssd", build_vignettes = TRUE) ### Troubleshooting tip