Skip to content

Commit b0c4434

Browse files
committed
Update dev install instructions in README
Revised the README files to clarify that the development version of 'requal' should be installed from GitHub using the 'remotes' package, replacing the previous r-universe installation instructions.
1 parent 9b62d76 commit b0c4434

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.Rmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,11 @@ install.packages("requal", repos = c("https://re-qda.r-universe.dev", "https://c
5353

5454
The development version contains the latest features, but might be less stable than a [released version](https://github.com/RE-QDA/requal/releases).
5555

56-
You can install the development version of `requal` by running this code in R:
56+
You can install the development version of `requal` from GitHub by running this code in R:
5757

5858
```
59-
install.packages("requal", repos = c("https://hlageek.r-universe.dev", "https://cloud.r-project.org"))
59+
install.packages("remotes")
60+
remotes::install_github("RE-QDA/requal", dependencies = TRUE)
6061
```
6162

6263
## Usage

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,11 @@ The development version contains the latest features, but might be less
5252
stable than a [released
5353
version](https://github.com/RE-QDA/requal/releases).
5454

55-
You can install the development version of `requal` by running this code
56-
in R:
55+
You can install the development version of `requal` from GitHub by
56+
running this code in R:
5757

58-
install.packages("requal", repos = c("https://hlageek.r-universe.dev", "https://cloud.r-project.org"))
58+
install.packages("remotes")
59+
remotes::install_github("RE-QDA/requal", dependencies = TRUE)
5960

6061
## Usage
6162

0 commit comments

Comments
 (0)