| install_arrow {arrow} | R Documentation |
Use this function to install the latest release of arrow, to switch to or
from a nightly development version, or on Linux to try reinstalling with
all necessary C++ dependencies.
install_arrow(
nightly = FALSE,
binary = Sys.getenv("LIBARROW_BINARY", TRUE),
use_system = Sys.getenv("ARROW_USE_PKG_CONFIG", FALSE),
minimal = Sys.getenv("LIBARROW_MINIMAL", FALSE),
repos = getOption("repos"),
...
)
nightly |
logical: Should we install a development version of the package, or should we install from CRAN (the default). |
binary |
On Linux, value to set for the environment variable
|
use_system |
logical: Should we use |
minimal |
logical: If building from source, should we build without
optional dependencies (compression libraries, for example)? Default is
|
repos |
character vector of base URLs of the repositories to install
from (passed to |
... |
Additional arguments passed to |
arrow_available() to see if the package was configured with
necessary C++ dependencies. vignette("install", package = "arrow") for
more ways to tune installation on Linux.