Detect, install and configure system requirements. This function is
automatically called when the package is enabled via enable
.
It can also be called manually at any time to update the system requirements.
Value
install_sysreqs
: No return value, called for side effects.
missing_sysreqs
: A list of missing libraries, for debugging.
Examples
if (FALSE) { # \dontrun{
# install 'units' without enabling the integration
install.packages("units")
# then trigger the installation of system requirements manually
rspm::install_sysreqs()
} # }