Skip to content
Snippets Groups Projects
Commit b34ed6a3 authored by Sebastian Henz's avatar Sebastian Henz
Browse files

Change recommended installation to use remotes instead of devtools

parent c8c60078
No related branches found
No related tags found
1 merge request!30version 3.0.0
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment