Reinstalling packages on new version of R

No need to copy and paste libraries to new folder, just point to the old library location using this
https://csgillespie.github.io/efficientR/3-3-r-startup.html#renviron

Then run

update.packages(checkBuilt = TRUE, ask = FALSE)	

To byte-compile your packages again with R 3.5.0

6 Likes