Skip to content

Commit 56bff6d

Browse files
authored
Merge pull request #32 from JanMarvin/runiverse
Add r-universe to README
2 parents 99ac284 + 66644ae commit 56bff6d

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,25 @@ accurate as possible. Speed is welcome, but a secondary goal.
2020

2121
With `drat`:
2222

23-
``` r
23+
```r
2424
drat::addRepo("JanMarvin")
2525
install.packages("readsas")
2626
```
2727

2828
With `devtools`:
2929

30-
``` r
30+
```r
3131
devtools::install_git("https://github.com/JanMarvin/readsas.git")
3232
```
3333

34+
With `r-universe`:
35+
```r
36+
options(repos = c(
37+
janmarvin = 'https://janmarvin.r-universe.dev',
38+
CRAN = 'https://cloud.r-project.org'))
39+
install.packages('readsas')
40+
```
41+
3442
## Basic usage
3543

3644
``` r

0 commit comments

Comments
 (0)