Notes to self on infrequent dev environment tasks
- Don't update R using
brew install rbecause reasons - Using
brew install --cask ris 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")