Skip to content

Instantly share code, notes, and snippets.

@drin
Last active October 2, 2021 01:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drin/954a42a9b60215b13562d16a12e08e1c to your computer and use it in GitHub Desktop.
Save drin/954a42a9b60215b13562d16a12e08e1c to your computer and use it in GitHub Desktop.
Install arrow using apt
sudo apt update
sudo apt install -y -V ca-certificates lsb-release wget
# modified per comment; since bintray is retired
wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt update
sudo apt install -y -V libarrow-dev # For C++
sudo apt install -y -V libarrow-dataset-dev # For Arrow Dataset C++
sudo apt install -y -V libparquet-dev # For Apache Parquet C++
sudo apt install -y -V libarrow-flight-dev # For Flight C++
@pkufeldt
Copy link

pkufeldt commented Oct 2, 2021

Bintray is dead, change lines 5 and 6 should be changed to:

wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
sudo apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment