From b34ed6a3ae1a099d4638dd35e99b90d3f2a36f6c Mon Sep 17 00:00:00 2001 From: Sebastian Henz <sebastian.henz@ufz.de> Date: Fri, 1 May 2020 11:54:51 +0200 Subject: [PATCH] Change recommended installation to use remotes instead of devtools --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 95b2f27..e2de897 100644 --- a/README.md +++ b/README.md @@ -4,17 +4,17 @@ This is the R implementation of the tri-phasic concentration-response model intr It allows modeling of ecotoxicological experiments where the response shows signs of a hormesis effect. ## Installation -Stressaddition is not on CRAN. You can install the most recent stable version from GitLab using the devtools package: +Stressaddition is not on CRAN. You can install the most recent stable version from GitLab using the remotes package: ``` r -# install.packages("devtools") -devtools::install_gitlab("oekotox/stressaddition", host = "git.ufz.de") +install.packages("remotes") +remotes::install_gitlab("oekotox/stressaddition", host = "git.ufz.de") ``` Alternatively there are binary and source builds downloadable from the [releases page](https://git.ufz.de/oekotox/stressaddition/-/releases). ## Updating RStudio's integrated package updater won't detect updates in packages installed from GitHub or GitLab. I recommend running ```r -devtools::update_packages() +remotes::update_packages() ``` in regular intervals to check for updates from those sources. -- GitLab