Skip to content

Commit

Permalink
doc: install from CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
ahasverus committed Oct 16, 2023
1 parent f2aa5fc commit 8506b8b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 8 deletions.
20 changes: 16 additions & 4 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,24 @@ Blanchet _et al._ 2008), methods available in the package

## Installation

The package is not yet published on the CRAN but you can install the development
version from GitHub with:
You can install the stable version from [CRAN](https://cran.r-project.org/) with:

```{r eval=FALSE}
# install.packages("remotes")
remotes::install_github("frbcesab/chessboard")
## Install stable version of < chessboard > from CRAN ----
install.packages("chessboard")
```


Or you can install the development version from [GitHub](https://github.com/) with:

```{r eval=FALSE}
## Install < remotes > package (if not already installed) ----
if (!requireNamespace("remotes", quietly = TRUE)) {
install.packages("remotes")
}
## Install dev version of < chessboard > from GitHub ----
remotes::install_github("FRBCesab/chessboard")
```

Then you can attach the package `chessboard`:
Expand Down
21 changes: 17 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,25 @@ al.* 2023):

## Installation

The package is not yet published on the CRAN but you can install the
development version from GitHub with:
You can install the stable version from
[CRAN](https://cran.r-project.org/) with:

``` r
# install.packages("remotes")
remotes::install_github("frbcesab/chessboard")
## Install stable version of < chessboard > from CRAN ----
install.packages("chessboard")
```

Or you can install the development version from
[GitHub](https://github.com/) with:

``` r
## Install < remotes > package (if not already installed) ----
if (!requireNamespace("remotes", quietly = TRUE)) {
install.packages("remotes")
}

## Install dev version of < chessboard > from GitHub ----
remotes::install_github("FRBCesab/chessboard")
```

Then you can attach the package `chessboard`:
Expand Down

0 comments on commit 8506b8b

Please sign in to comment.