Notes to self on infrequent dev environment tasks
- Don't update R using
brew install r
because reasons - Using
brew install --cask r
is okay - Need to reinstall packages after updating R
- check package library location in
~/.Renviron
install.packages("pak")
- install packages
- try these instructions next time -- transferring packages
- or maybe make a lockfile? pak::lockfile_create()
pkgs <- c("tidyverse", "devtools", "usethis")