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
FixesGH-578.
* Use meaningful "id" not "number" for link ID such as "arrow-rust" not
"26"
* Add Go and Java to separated libraries
* Remove Java related description because Java was separated
* Remove Go related description because Go was separated
* Don't use newlines for a paragraph for all paragraphs
* Update supported Linux distributions
* Update available NuGet packages for C#
* Update available conda packages
* Update available MSYS2 packages
* Add Conan related information
* Update supported Ruby versions
It's not required but this also add Docker Compose configuration for
local preview.
Copy file name to clipboardExpand all lines: install.md
+74-75Lines changed: 74 additions & 75 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,64 +26,45 @@ limitations under the License.
26
26
27
27
## Current Version: {{site.data.versions['current'].number}} ({{site.data.versions['current'].date}})
28
28
29
-
See the [release notes][10] for more about what's new. For information on previous releases, see [here][19]. Rust and Julia libraries are released separately. See the following pages for details:
29
+
See the [release notes][release-notes] for more about what's new. For information on previous releases, see [release list][release-list]. Go, Java, Julia and Rust libraries are released separately. See the following pages for details:
30
30
31
-
* Rust: [documentation for arrow crate][26]
32
-
* Julia: [repository for Arrow.jl package][27]
31
+
* Go: [repository for Apache Arrow Go][arrow-go]
32
+
* Java: [repository for Apache Arrow Java][arrow-java]
33
+
* Julia: [repository for Arrow.jl package][arrow-julia]
34
+
* Rust: [documentation for arrow crate][arrow-rust]
33
35
34
36
This page is a reference listing of release artifacts and package managers. For language-specific user guides, see the pages listed in the "Documentation" menu above.
For convenience, we also provide packages through several package managers. Many of them are provided as binary, built from the source release. As the Apache Arrow PMC has not explicitly voted on these packages, they are technically considered unofficial releases.
192
174
193
-
### C++ and Python Conda Packages
175
+
### C++, GLib (C), Python and R Conda Packages
194
176
195
-
Binary conda packages are on [conda-forge][5] for Linux (x86\_64, aarch64, ppc64le), macOS (x86\_64 and arm64), and Windows (x86\_64)
177
+
Binary conda packages are on [conda-forge][conda-forge] for Linux (x86\_64, aarch64, ppc64le), macOS (x86\_64 and arm64), and Windows (x86\_64)
You can download and install Apache Arrow C++ using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager:
236
+
You can download and install Apache Arrow C++ using the [vcpkg][vcpkg] dependency manager:
250
237
251
238
```shell
252
239
git clone https://github.com/Microsoft/vcpkg.git
@@ -256,19 +243,28 @@ cd vcpkg
256
243
./vcpkg install arrow
257
244
```
258
245
259
-
The Apache Arrow C++ port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request][18] on the vcpkg repository.
246
+
The Apache Arrow C++ port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request on the vcpkg repository][vcpkg].
247
+
248
+
### C++ Package on Conan
249
+
250
+
You can download and install Apache Arrow C++ using the [Conan][conan] package manager. For example, you can use the following `conanfile.txt`:
251
+
252
+
```ini
253
+
[requires]
254
+
arrow/{{site.data.versions['current'].number}}
255
+
```
260
256
261
257
### R Package on CRAN
262
258
263
-
Install the R package from [CRAN][20] with
259
+
Install the R package from [CRAN][cran] with
264
260
265
261
```r
266
262
install.packages("arrow")
267
263
```
268
264
269
265
### Ruby Packages on RubyGems
270
266
271
-
Install the Ruby packages for Ruby 3.0, 3.1 and 3.2 from [RubyGems][25] with
267
+
Install the Ruby packages for maintained Ruby from [RubyGems][rubygems] with:
272
268
273
269
```shell
274
270
gem install red-arrow
@@ -280,24 +276,27 @@ gem install red-gandiva # For Gandiva support
280
276
gem install red-parquet # For Apache Parquet support
0 commit comments