From 3c0f7a62fc2abb4648fcebeeb364c96d9b4776c6 Mon Sep 17 00:00:00 2001 From: Jackson Hoffart Date: Tue, 30 Jan 2024 11:09:32 +0100 Subject: [PATCH] Add dev install instructions --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 7d04506..4a0ce18 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,18 @@ The goal of `pacta.r.package` is to provide a default template R package template. This template can be used to easily scaffold new PACTA R packages. + +## Installation + +Install the released version of `pacta.r.package` from CRAN with: + +``` r +install.packages("pacta.r.package") +``` + +Or install the development version of `pacta.r.package` with something like this: + +``` r +# install.packages("pak") +pak::pak("RMI-PACTA/pacta.r.package") +```