Skip to content

Instantly share code, notes, and snippets.

@cheuerde
Last active September 18, 2019 05:28
Show Gist options
  • Save cheuerde/a5b8dae8a421fad09c6f to your computer and use it in GitHub Desktop.
Save cheuerde/a5b8dae8a421fad09c6f to your computer and use it in GitHub Desktop.
Install an R-Package from Rforge repository with CRAN dependencies #install #R
# 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