Skip to content

Commit 36cfe28

Browse files
Further linux install revisions
1 parent 79bd7e0 commit 36cfe28

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

r/R/install-arrow.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ 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-
"such as Debian, Ubuntu, CentOS, and Fedora."
102+
"including Debian, Ubuntu, and CentOS. You'll need to install 'libarrow-dev'",
103+
"and 'libparquet-dev'."
103104
)
104105

105106
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/) for a list of PPAs from which you can obtain it.
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`.
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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ install.packages("arrow")
3030
On macOS and Windows, installing a binary package from CRAN will handle
3131
Arrow’s C++ dependencies for you. On Linux, you’ll need to first install
3232
the C++ library. See the [Arrow project installation
33-
page](https://arrow.apache.org/install/) for a list of PPAs from which
34-
you can obtain it.
33+
page](https://arrow.apache.org/install/) to find pre-compiled binary
34+
packages for some common Linux distributions, including Debian, Ubuntu,
35+
and CentOS. You’ll need to install `libarrow-dev` and `libparquet-dev`.
3536

3637
If you install the `arrow` package from source and the C++ library is
3738
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-
"Fedora. Or, see the Arrow C++ developer guide",
54+
"'libparquet-dev'. Or, see the Arrow C++ developer guide",
5555
fixed = TRUE
5656
)
5757
})

0 commit comments

Comments
 (0)