Skip to content

Commit

Permalink
update install methods in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
e-kotov committed Dec 16, 2024
1 parent 291cba6 commit 662e973
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 4 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,20 @@ API](https://www.mapineq.org/data-users/) and

## Installation

You can install the development version of `{mapineqr}` from
[GitHub](https://github.com/) with:
<!-- Install from CRAN:
&#10;```r
install.packages('mapineqr')
``` -->

Install latest release from **R-multiverse**:

``` r
install.packages('mapineqr',
repos = c('https://e-kotov.r-universe.dev', 'https://cloud.r-project.org')
)
```

You can also install the development version of `mapineqr` from GitHub:

``` r
if (!require("pak")) install.packages("pak")
Expand Down
19 changes: 17 additions & 2 deletions README.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,24 @@ The goal of `{mapineqr}` is to access the data from the [Mapineq.org API](https:

## Installation

You can install the development version of `{mapineqr}` from [GitHub](https://github.com/e-kotov/mapineqr) with:

``` r
<!-- Install from CRAN:
```r
install.packages('mapineqr')
``` -->

Install latest release from **R-multiverse**:

```r
install.packages('mapineqr',
repos = c('https://e-kotov.r-universe.dev', 'https://cloud.r-project.org')
)
```

You can also install the development version of `mapineqr` from GitHub:

```r
if (!require("pak")) install.packages("pak")
pak::pak("e-kotov/mapineqr")
```
Expand Down

0 comments on commit 662e973

Please sign in to comment.