diff --git a/README.Rmd b/README.Rmd index 58a2dd21f..bbdffb66d 100644 --- a/README.Rmd +++ b/README.Rmd @@ -59,7 +59,7 @@ The recommended way to install this package is via R-multiverse: ```r Sys.setenv(NOT_CRAN = "true") -install.packages("polars", repos = "https://r-multiverse.r-universe.dev") +install.packages("polars", repos = "https://community.r-multiverse.org") ``` [The "Install" vignette](https://pola-rs.github.io/r-polars/vignettes/install.html) (`vignette("install", "polars")`) diff --git a/README.md b/README.md index 338b236f4..ab1b02e3a 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ The recommended way to install this package is via R-multiverse: ``` r Sys.setenv(NOT_CRAN = "true") -install.packages("polars", repos = "https://r-multiverse.r-universe.dev") +install.packages("polars", repos = "https://community.r-multiverse.org") ``` [The “Install” diff --git a/vignettes/install.Rmd b/vignettes/install.Rmd index e0c09a227..e4c35fb80 100644 --- a/vignettes/install.Rmd +++ b/vignettes/install.Rmd @@ -31,7 +31,7 @@ Installing the latest release version. ```r Sys.setenv(NOT_CRAN = "true") # Enable installation with pre-built Rust library binary, or enable Rust caching -install.packages("polars", repos = "https://r-multiverse.r-universe.dev") +install.packages("polars", repos = "https://community.r-multiverse.org") ``` - On supported platforms, binary R package will be installed. @@ -111,7 +111,7 @@ For example (on Bash): ```sh export LIBR_POLARS_BUILD="false" export LIBR_POLARS_PATH="/tmp/libr_polars.a" -Rscript -e 'install.packages("polars", repos = "https://r-multiverse.r-universe.dev", type = "source")' +Rscript -e 'install.packages("polars", repos = "https://community.r-multiverse.org", type = "source")' ``` ### Rust build time options