Last active
August 14, 2019 08:50
-
-
Save JimGrange/d52c343db3ab26180a5ed9a2d0fd6de4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# step 1 (before) | |
tmp <- installed.packages() | |
installedpackages <- as.vector(tmp[is.na(tmp[,"Priority"]), 1]) | |
save(installedpackages, file="installed_packages.rda") | |
# now install new version of R | |
# step 2 (after) | |
load("installed_packages.rda") | |
for(i in 1:length(installedpackages)){ | |
install.packages(installedpackages[i]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment