Skip to content

Commit

Permalink
chore(README): specify installation docs for dev branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jamespeapen committed Aug 19, 2024
1 parent 2e4af53 commit 2d48ead
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,31 @@ install.packages("ceas")

### Github

You can install the development version from Github by cloning the repo and running
You can install the release or development versions from GitHub by cloning the
repo. The code on the `main` branch is in sync with the CRAN releases while the
`dev` branch has the latest updates. Documentation for the dev branch can be
found on the [dev page](https://jamespeapen.github.io/ceas/dev/) of the website
(`/dev`).


```bash
git clone https://github.com/jamespeapen/ceas/
git clone -b dev https://github.com/jamespeapen/ceas/ # dev version
R CMD INSTALL ceas
```

You can also use the R [`devtools`](https://devtools.r-lib.org/) package:

```r
devtools::install_github("jamespeapen/ceas")
devtools::install_github("jamespeapen/ceas", ref = "dev") # dev version
```

or [`pak`](https://pak.r-lib.org/):

```r
pak::pkg_install("jamespeapen/ceas")
pak::pkg_install("jamespeapen/ceas@dev") # dev version
```

## Usage
Expand Down

0 comments on commit 2d48ead

Please sign in to comment.