Skip to content

Instantly share code, notes, and snippets.

@RaymondSHANG
Forked from arne-cl/restore_packages.R
Created October 10, 2017 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RaymondSHANG/e07cd84db7e24052458588c7ed18bce3 to your computer and use it in GitHub Desktop.
Save RaymondSHANG/e07cd84db7e24052458588c7ed18bce3 to your computer and use it in GitHub Desktop.
save/load/install a list of your currently installed R packages
# restore_packages.R
#
# installs each package from the stored list of packages
# source: http://hlplab.wordpress.com/2012/06/01/transferring-installed-packages-between-different-installations-of-r/
load("~/installed_packages.rda")
for (count in 1:length(installedpackages)) {
install.packages(installedpackages[count])
}
# store_packages.R
#
# stores a list of your currently installed packages
# source: http://hlplab.wordpress.com/2012/06/01/transferring-installed-packages-between-different-installations-of-r/
tmp = installed.packages()
installedpackages = as.vector(tmp[is.na(tmp[,"Priority"]), 1])
save(installedpackages, file="~/installed_packages.rda")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment