Skip to content

Commit

Permalink
Add install instruction to README
Browse files Browse the repository at this point in the history
  • Loading branch information
cderv authored Nov 21, 2023
1 parent 8173583 commit 1c8dc29
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,25 @@ These functions enable you to inspect the Quarto installation as well as the met
| [`quarto_path()`](https://quarto-dev.github.io/quarto-r/reference/quarto_path.html) | Path to the Quarto binary |
| [`quarto_version()`](https://quarto-dev.github.io/quarto-r/reference/quarto_version.html) | Current version of Quarto |
| [`quarto_inspect()`](https://quarto-dev.github.io/quarto-r/reference/quarto_inspect.html) | Inspect metadata for a file or project |

### Installing the package

Latest released version from CRAN

```r
# latest release version
install.packages("quarto")
```

Latest dev version from Github
```r
# dev version
pak::pak("quarto-dev/quarto-r")
# or
remotes::install_github("quarto-dev/quarto-r")
```

or Latest build of dev version from r-universe
```r
install.packages('quarto', repos = c('https://quarto-dev.r-universe.dev', 'https://cloud.r-project.org'))
```

0 comments on commit 1c8dc29

Please sign in to comment.