Last active
July 19, 2019 20:31
-
-
Save jspaezp/f829624283d5508dd2eba09eafa06ce0 to your computer and use it in GitHub Desktop.
recompile all R packages
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
| lib <- .libPaths()[1] | |
| pkgs <- rownames(installed.packages(lib)) | |
| install.packages( | |
| lib = lib, | |
| pkgs = as.data.frame(pkgs, stringsAsFactors=FALSE)$Package, | |
| type = 'source' | |
| ) | |
| source("https://bioconductor.org/biocLite.R") | |
| biocLite(pkgs, type="source") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment