pkg_install {pak} | R Documentation |
Install a package and its dependencies, into a single package library.
pkg_install(pkg, lib = .libPaths()[[1L]], upgrade = FALSE,
ask = interactive())
pkg |
Package names or remote package specifications to install. |
lib |
Package library to install the packages to. Note that all dependent packages will the be installed here, even if they are already installed in another library. |
upgrade |
Whether to upgrade already installed packages to the
latest available version. If this is |
ask |
Whether to ask for confirmation. |
Data frame, with information about the installed package(s).
Other package functions: pak_package_sources
,
pkg_remove
, pkg_status
## Not run:
pkg_install("dplyr")
pkg_install("dplyr", upgrade = TRUE)
## Package from GitHub
pkg_install("r-lib/pkgconfig")
## End(Not run)