Installation details
The polars0 package can be installed from R-universe.
Some platforms can install pre-compiled binaries, and others will need to build from source.
How to install
From R-universe (recommended)
Installing the latest release version.
Sys.setenv(NOT_CRAN = "true") # Enable installation with pre-built Rust library binary, or enable Rust caching
install.packages("polars0", repos = "https://rpolars.r-universe.dev")
- On supported platforms, binary R package will be installed.
- On the other platforms, the pre-built Rust library binary will be downloaded while building the R source package.
- If the pre-built Rust library binary is not available, the Rust library will be built from source (provided that Rust is installed).
Details of installation
Pre-built Rust library binaries
If one of the following environment variables is set, a pre-built Rust library binary will be tried to be used before building the Rust source.
NOT_CRAN="true"MY_UNIVERSEis not empty (This environment variable is set by R-universe)LIBR_POLARS_BUILD="false"(This is prioritized, so if you want to force a source build, setLIBR_POLARS_BUILD="true")
By default, the pre-built Rust library binary is downloaded from the URL
recorded in tools/lib-sums.tsv. If tools/lib-sums.tsv does not
exist, or the corresponding URL does not exist, or the hash of the
downloaded file does not match the recorded one, it falls back to
building from source.
If you want to use a pre-built Rust library binary that exists locally,
set the LIBR_POLARS_PATH environment variable to the path to the
binary. For example (on Bash):
export LIBR_POLARS_BUILD="false"
export LIBR_POLARS_PATH="/tmp/libr_polars.a"
Rscript -e 'install.packages("polars0", repos = "https://rpolars.r-universe.dev", type = "source")'
Rust build time options
r-polars Rust library has some feature flags that affect the R package features. These flags are set at compile time, and cannot be changed at runtime.
The features enabled in the compiled Rust library are shown by the
polars_info() function.
library(polars0)
polars_info()
#> polars0 package version : 1.0.0
#> Rust Polars crate version: 0.45.1
#>
#> Thread pool size: 4
#>
#> Features:
#> default TRUE
#> full_features TRUE
#> disable_limit_max_threads TRUE
#> nightly TRUE
#> sql TRUE
#> rpolars_debug_print FALSE
#>
#> Code completion: deactivated
At this time, the following environment variables can be used to change the Rust library build time options.
Features
The feature flags can be set by the LIBR_POLARS_FEATURES environment
variable. For example, to enable the full_features feature, set the
environment variable as like LIBR_POLARS_FEATURES="full_features".
Currently full_features would work as a combination of the following
features.
- The
defaultfeature -sqlfor enablepl$SQLContext(). - Features for CRAN compatibility
-
disable_limit_max_threads, this feature disables the automatic limit of the maximum number of threads to 2 for CRAN compatibility, and the maximum number of threads is used by default. See?pl_thread_pool_sizefor details. - Features for nightly toolchain
-
nightlyfor nightly toolchain features and SIMD.
Note that nightly features requires the Rust nightly toolchain nightly-2024-11-28.
Profile
The profile can be set by the LIBR_POLARS_PROFILE environment
variable. For example, to build with more optimization, set the
environment variable as like LIBR_POLARS_PROFILE="release-optimized".
Minimum Supported Rust Version (MSRV)
The minimum supported Rust version (MSRV) is declared in the
src/rust/Cargo.toml file’s package.rust-version field.
This MSRV is for the default features. For other features, the nightly Rust toolchain is required.