Skip to content

Commit 44c9659

Browse files
Tweak language again
1 parent 36cfe28 commit 44c9659

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

r/R/install-arrow.R

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,9 @@ SEE_ARROW_INSTALL <- paste(
9999
"See the Apache Arrow project installation page",
100100
"<https://arrow.apache.org/install/>",
101101
"to find pre-compiled binary packages for some common Linux distributions,",
102-
"including Debian, Ubuntu, and CentOS. You'll need to install 'libarrow-dev'",
103-
"and 'libparquet-dev'."
102+
"including Debian, Ubuntu, and CentOS. You'll need to install",
103+
"'libparquet-dev' on Debian and Ubuntu, or 'parquet-devel' on CentOS. This",
104+
"will also automatically install the arrow C++ library as a dependency."
104105
)
105106

106107
THEN_REINSTALL <- paste(

r/README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Install the latest release of `arrow` from CRAN with
3030
install.packages("arrow")
3131
```
3232

33-
On macOS and Windows, installing a binary package from CRAN will handle Arrow's C++ dependencies for you. On Linux, you'll need to first install the C++ library. See the [Arrow project installation page](https://arrow.apache.org/install/) to find pre-compiled binary packages for some common Linux distributions, including Debian, Ubuntu, and CentOS. You'll need to install `libarrow-dev` and `libparquet-dev`.
33+
On macOS and Windows, installing a binary package from CRAN will handle Arrow's C++ dependencies for you. On Linux, you'll need to first install the C++ library. See the [Arrow project installation page](https://arrow.apache.org/install/) to find pre-compiled binary packages for some common Linux distributions, including Debian, Ubuntu, and CentOS. You'll need to install `libparquet-dev` on Debian and Ubuntu, or `parquet-devel` on CentOS. This will also automatically install the arrow C++ library as a dependency.
3434

3535
If you install the `arrow` package from source and the C++ library is not found, the R package functions will notify you that Arrow is not available. Call
3636

r/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ Arrow’s C++ dependencies for you. On Linux, you’ll need to first install
3232
the C++ library. See the [Arrow project installation
3333
page](https://arrow.apache.org/install/) to find pre-compiled binary
3434
packages for some common Linux distributions, including Debian, Ubuntu,
35-
and CentOS. You’ll need to install `libarrow-dev` and `libparquet-dev`.
35+
and CentOS. You’ll need to install `libparquet-dev` on Debian and
36+
Ubuntu, or `parquet-devel` on CentOS. This will also automatically
37+
install the arrow C++ library as a dependency.
3638

3739
If you install the `arrow` package from source and the C++ library is
3840
not found, the R package functions will notify you that Arrow is not

r/tests/testthat/test-install-arrow.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ r_only({
5151
test_that("Linux on release version gets pointed to PPA first, then C++", {
5252
expect_match(
5353
install_arrow_msg(FALSE, "0.13.0", os="linux"),
54-
"'libparquet-dev'. Or, see the Arrow C++ developer guide",
54+
"dependency. Or, see the Arrow C++ developer guide",
5555
fixed = TRUE
5656
)
5757
})

0 commit comments

Comments
 (0)