You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ARROW-6182: [R] Add note to README about r-arrow conda installation
cc @xhochyClosesapache#5142 from nealrichardson/r-conda-install and squashes the following commits:
71a76d0 <Neal Richardson> Add instructions on installing from conda to the R README
Authored-by: Neal Richardson <neal.p.richardson@gmail.com>
Signed-off-by: Wes McKinney <wesm+git@apache.org>
Copy file name to clipboardExpand all lines: r/README.Rmd
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -30,13 +30,13 @@ Install the latest release of `arrow` from CRAN with
30
30
install.packages("arrow")
31
31
```
32
32
33
-
> Warning: the macOS binary packages on CRAN for 0.14.1 do not work as described
34
-
> below. To install, you'll first need to use Homebrew to get the Arrow C++
35
-
> library (`brew install apache-arrow`), and then from R you can
36
-
> `install.packages("arrow", type = "source")`. We hope to have this resolved
37
-
> in the next release.
33
+
Conda users on Linux and macOS can install `arrow` from conda-forge with
38
34
39
-
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. Other Linux distributions must install the C++ library from source.
35
+
```
36
+
conda install -c conda-forge r-arrow
37
+
```
38
+
39
+
On macOS and Windows, installing a binary package from CRAN will handle Arrow's C++ dependencies for you. On Linux, unless you use `conda` 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. Other Linux distributions must install the C++ library from source.
40
40
41
41
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
0 commit comments