Skip to content

Instantly share code, notes, and snippets.

@nilforooshan
Last active April 19, 2024 10:20
Show Gist options
  • Save nilforooshan/c40819b2bcdc33a88f82f72a8877c7e7 to your computer and use it in GitHub Desktop.
Save nilforooshan/c40819b2bcdc33a88f82f72a8877c7e7 to your computer and use it in GitHub Desktop.
R: Install R package arrow on a Linux server

Install R package arrow on a Linux server

sudo apt-get update && sudo apt-get install -y --no-install-recommends r-base # Install R
sudo apt-get -y install libcurl4-openssl-dev libssl-dev make g++ # Install dependencies for arrow package
sudo R -e "install.packages('arrow', dependencies=TRUE)" # Install R package arrow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment