Skip to content

Commit

Permalink
Further linux install revisions
Browse files Browse the repository at this point in the history
  • Loading branch information
nealrichardson committed Aug 7, 2019
1 parent 79bd7e0 commit 36cfe28
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion r/R/install-arrow.R
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ SEE_ARROW_INSTALL <- paste(
"See the Apache Arrow project installation page",
"<https://arrow.apache.org/install/>",
"to find pre-compiled binary packages for some common Linux distributions,",
"such as Debian, Ubuntu, CentOS, and Fedora."
"including Debian, Ubuntu, and CentOS. You'll need to install 'libarrow-dev'",
"and 'libparquet-dev'."
)

THEN_REINSTALL <- paste(
Expand Down
2 changes: 1 addition & 1 deletion r/README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Install the latest release of `arrow` from CRAN with
install.packages("arrow")
```

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.
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`.

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

Expand Down
5 changes: 3 additions & 2 deletions r/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ install.packages("arrow")
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.
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`.

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
Expand Down
2 changes: 1 addition & 1 deletion r/tests/testthat/test-install-arrow.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ r_only({
test_that("Linux on release version gets pointed to PPA first, then C++", {
expect_match(
install_arrow_msg(FALSE, "0.13.0", os="linux"),
"Fedora. Or, see the Arrow C++ developer guide",
"'libparquet-dev'. Or, see the Arrow C++ developer guide",
fixed = TRUE
)
})
Expand Down

0 comments on commit 36cfe28

Please sign in to comment.