Last active
October 24, 2024 06:28
-
-
Save jeroen/15ce75d4f1194af6d48294b72a926f54 to your computer and use it in GitHub Desktop.
Install arrow on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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
https://arrow.apache.org/install/