install_deps | R Documentation |
Given a dependency_structure
object, install the R packages
install_deps(
dep_structure,
install_project = TRUE,
install_direction = "upstream",
install_external_deps = TRUE,
upgrade = "never",
package_list = NULL,
dry = FALSE,
verbose = 1,
...
)
dep_structure |
( |
install_project |
( |
install_direction |
"upstream", "downstream" or "all"; which packages to install (according to dependency structure). By default this is only "upstream" |
install_external_deps |
logical to describe whether to install
external dependencies of package using |
upgrade |
argument passed to |
package_list |
( |
dry |
( |
verbose |
( |
... |
Additional args passed to |
data.frame
of performed actions
determine_branch
## Not run:
x <- dependency_table(project = "./path/to/project")
install_deps(x)
# install all dependencies
install_deps(x, install_direction = "all")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.