Last active
September 18, 2019 05:28
-
-
Save cheuerde/a5b8dae8a421fad09c6f to your computer and use it in GitHub Desktop.
Install an R-Package from Rforge repository with CRAN dependencies #install #R
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
# from the Rfroge manual: | |
install.packages("mypackage", repos = c("http://R-Forge.R-project.org", | |
"http://your.nearest.CRAN.mirror.org"), dep = TRUE) | |
# for example | |
install.packages("cgenpp", repos=c("http://R-Forge.R-project.org", | |
"http://cran.at.r-project.org"),dependencies=TRUE) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment