Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
7 changes: 7 additions & 0 deletions technical-preparation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down