From 9842b4f4674e2213369e4a6aa8e623086d175dcf Mon Sep 17 00:00:00 2001 From: Rich FitzJohn Date: Thu, 22 Aug 2024 10:51:11 +0100 Subject: [PATCH] Use universe for installation by preference --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 827aa93c..3621baa5 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,15 @@ The basic functionality of this package is in place, but we plan to do work on: ## Installation -To install `monty`: +Please install from our [r-universe](https://mrc-ide.r-universe.dev/): + +```r +install.packages( + "monty", + repos = c("https://mrc-ide.r-universe.dev", "https://cloud.r-project.org")) +``` + +If you prefer, you can install from GitHub with `remotes`: ```r remotes::install_github("mrc-ide/monty", upgrade = FALSE)