From 89fb5f3c0e4583fbb6a484414f33547a8056b8f7 Mon Sep 17 00:00:00 2001 From: Clemens Schmid Date: Mon, 30 Nov 2020 16:05:12 +0100 Subject: [PATCH] better dev version install command --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0c12d4d..30903a4 100644 --- a/README.md +++ b/README.md @@ -25,11 +25,12 @@ For further information, please have a look at the Vignettes and the Manual. Installation ------------ -`mortAAR` is available on [CRAN](https://CRAN.R-project.org/package=mortAAR) and can be installed through `install.packages("mortAAR")`. You can use [devtools](https://CRAN.R-project.org/package=devtools) to install the development version. To do so: +`mortAAR` is available on [CRAN](https://CRAN.R-project.org/package=mortAAR) and can be installed through `install.packages("mortAAR")`. You can also install the development version with: - if(!require('devtools')) install.packages('devtools') - library(devtools) - install_github('ISAAKiel/mortAAR') +``` +if(!require('remotes')) install.packages('remotes') +remotes::install_github('ISAAKiel/mortAAR', build_vignettes = TRUE) +``` Licence -------