Skip to content

Instantly share code, notes, and snippets.

@jeroen
Last active September 6, 2023 05:51
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jeroen/15ce75d4f1194af6d48294b72a926f54 to your computer and use it in GitHub Desktop.
Save jeroen/15ce75d4f1194af6d48294b72a926f54 to your computer and use it in GitHub Desktop.
Install arrow on Ubuntu
# Import the GPG key
wget https://dist.apache.org/repos/dist/dev/arrow/KEYS
apt-key add < KEYS
# Install libarrow
DISTRO=$(lsb_release --codename --short)
add-apt-repository "deb [arch=amd64] http://dl.bintray.com/apache/arrow/ubuntu $DISTRO main"
apt-get install libarrow-dev libparquet-dev
# Install the R package
R -e 'install.packages("arrow", repos = "https://cloud.r-project.org")'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment