Skip to content

Commit bfc48bd

Browse files
committed
update readme with new install instructions
1 parent 32b6cb8 commit bfc48bd

File tree

4 files changed

+714
-8
lines changed

4 files changed

+714
-8
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@ tests/test.requal
1919
# dev stuff
2020
test-iframe.R
2121
wip.R
22+
23+
/.quarto/

README.Rmd

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,22 @@ You can install `requal` from [GitHub](https://github.com/) by following these s
4141

4242
1. Download the current release of `requal` from [Releases](https://github.com/RE-QDA/requal/releases).
4343
2. Install the `remotes` package by running `install.packages("remotes")` command in R console.
44-
3. Install the `requal` package by running `remotes::install_local(file.choose())` and selecting the downloaded release file on your hard-drive.
44+
3. Install the `requal` package by running `remotes::install_local(file.choose())` and selecting the downloaded release file on your hard-drive.
45+
46+
Alternatively, simply install the `requal` package from [R-Universe](https://re-qda.r-universe.dev/requal) by copying and pasting the following single-line command into the R console:
47+
48+
```
49+
install.packages("requal", repos = c("https://re-qda.r-universe.dev", "https://cloud.r-project.org"))
50+
```
4551

4652
#### Development version
4753

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

50-
You can install the development version of `requal` from [GitHub](https://github.com/) by running this code in R:
56+
You can install the development version of `requal` by running this code in R:
5157

5258
```
53-
install.packages("devtools")
54-
devtools::install_github("RE-QDA/requal")
59+
install.packages("requal", repos = c("https://hlageek.r-universe.dev", "https://cloud.r-project.org"))
5560
```
5661

5762
## Usage

0 commit comments

Comments
 (0)