From ff132f6b567cdd6245be84d64933395105cdd388 Mon Sep 17 00:00:00 2001 From: Irena Papst Date: Thu, 20 Mar 2025 09:20:35 -0500 Subject: [PATCH 1/2] add install command that works where original failed (in renv environment on linux server) --- technical-preparation.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/technical-preparation.md b/technical-preparation.md index c5684ae..cf0e888 100644 --- a/technical-preparation.md +++ b/technical-preparation.md @@ -81,6 +81,13 @@ repos = c('https://canmod.r-universe.dev', 'https://cloud.r-project.org') install.packages('macpan2', repos = repos) ``` +If this command fails, try: + +```r +repos = c('https://canmod.r-universe.dev', 'https://cloud.r-project.org') +install.packages('macpan2', repos = repos, type = "binary") +``` + ## Verify that Everything Worked First, ensure that the packages load without errors. Run the following From e8d1a7621ab467dcb8dec6fe9d74651a0bb973c9 Mon Sep 17 00:00:00 2001 From: Irena Papst Date: Fri, 21 Mar 2025 06:52:32 -0500 Subject: [PATCH 2/2] link to package documentation site instead of github repo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 15d8f55..b3ea692 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A [workshop](https://canmod.github.io/macpan-workshop/) on [macpan2](https://can * [Technical preparation](technical-preparation.md) * [Syllabus](syllabus.md) * [Video resources](video-resources.md) -* [Package Documentation](https://github.com/canmod/macpan2) +* [Package Documentation](https://canmod.github.io/macpan2/) * [Model library](https://github.com/canmod/macpan2/tree/main/inst/starter_models) * [Exploration Exercises](exploration-exercises.md) * [Code/Answers](https://github.com/canmod/macpan-workshop/tree/main/code)