layout: default

Current Version: {{site.data.versions[‘current’].number}}

Released: {{site.data.versions[‘current’].date}}

See the release notes for more about what's new.

Source release

Java Packages

Java Artifacts on Maven Central

Binary Installers for C, C++, Python

C++ and Python Conda Packages (Unofficial)

We have provided binary conda packages on conda-forge for the following platforms:

  • Linux and macOS (Python 2.7, 3.5, and 3.6)
  • Windows (Python 3.5 and 3.6)

Install them with:

conda install arrow-cpp={{site.data.versions['current'].pinned_number}} -c conda-forge
conda install pyarrow={{site.data.versions['current'].pinned_number}} -c conda-forge

Python Wheels on PyPI

We have provided official binary wheels on PyPI for Linux, macOS, and Windows:

pip install pyarrow=={{site.data.versions['current'].pinned_number}}

We recommend pinning {{site.data.versions['current'].pinned_number}} in requirements.txt to install the latest patch release.

These include the Apache Arrow and Apache Parquet C++ binary libraries bundled with the wheel.

C++ and GLib (C) Packages for Debian GNU/Linux, Ubuntu and CentOS (Unofficial)

We have provided APT and Yum repositories for Apache Arrow C++ and Apache Arrow GLib (C). Here are supported platforms:

  • Debian GNU/Linux stretch
  • Ubuntu 14.04 LTS
  • Ubuntu 16.04 LTS
  • Ubuntu 18.04 LTS
  • CentOS 6
  • CentOS 7

Debian GNU/Linux:

sudo apt install -y -V apt-transport-https
sudo apt install -y -V lsb-release
sudo wget -O /usr/share/keyrings/red-data-tools-keyring.gpg https://packages.red-data-tools.org/$(lsb_release --id --short | tr 'A-Z' 'a-z')/red-data-tools-keyring.gpg
sudo tee /etc/apt/sources.list.d/red-data-tools.list <<APT_LINE
deb [signed-by=/usr/share/keyrings/red-data-tools-keyring.gpg] https://packages.red-data-tools.org/$(lsb_release --id --short | tr 'A-Z' 'a-z')/ $(lsb_release --codename --short) main
deb-src [signed-by=/usr/share/keyrings/red-data-tools-keyring.gpg] https://packages.red-data-tools.org/$(lsb_release --id --short | tr 'A-Z' 'a-z')/ $(lsb_release --codename --short) main
APT_LINE
sudo apt update
sudo apt install -y -V libarrow-dev # For C++
sudo apt install -y -V libarrow-glib-dev # For GLib (C)

Ubuntu:

sudo apt install -y -V apt-transport-https
sudo apt install -y -V lsb-release
sudo wget -O /usr/share/keyrings/red-data-tools-keyring.gpg https://packages.red-data-tools.org/$(lsb_release --id --short | tr 'A-Z' 'a-z')/red-data-tools-keyring.gpg
sudo tee /etc/apt/sources.list.d/red-data-tools.list <<APT_LINE
deb [signed-by=/usr/share/keyrings/red-data-tools-keyring.gpg] https://packages.red-data-tools.org/$(lsb_release --id --short | tr 'A-Z' 'a-z')/ $(lsb_release --codename --short) universe
deb-src [signed-by=/usr/share/keyrings/red-data-tools-keyring.gpg] https://packages.red-data-tools.org/$(lsb_release --id --short | tr 'A-Z' 'a-z')/ $(lsb_release --codename --short) universe
APT_LINE
sudo apt update
sudo apt install -y -V libarrow-dev # For C++
sudo apt install -y -V libarrow-glib-dev # For GLib (C)

CentOS:

sudo yum install -y https://packages.red-data-tools.org/centos/red-data-tools-release-latest.noarch.rpm
sudo yum install -y --enablerepo=epel arrow-devel # For C++
sudo yum install -y --enablerepo=epel arrow-glib-devel # For GLib (C)

These repositories also provide Apache Parquet C++ and Apache Parquet GLib. You can install them by the followings:

Debian GNU/Linux and Ubuntu:

sudo apt install -y -V libparquet-dev # For Apache Parquet C++
sudo apt install -y -V libparquet-glib-dev # For Parquet GLib (C)

CentOS:

sudo yum install -y --enablerepo=epel parquet-devel # For Apache Parquet C++
sudo yum install -y --enablerepo=epel parquet-glib-devel # For Parquet GLib (C)

These repositories are managed at red-data-tools/packages.red-data-tools.org. If you have any feedback, please send it to the project instead of Apache Arrow project.