Skip to content

Instantly share code, notes, and snippets.

@pbanderas
Forked from eidosam/install-orc-tools.sh
Last active October 17, 2019 10:35
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 pbanderas/547333a30e2bd46c7c3899e17b6cbb4c to your computer and use it in GitHub Desktop.
Save pbanderas/547333a30e2bd46c7c3899e17b6cbb4c to your computer and use it in GitHub Desktop.
Install Apache ORC tools
sudo add-apt-repository ppa:george-edison55/cmake-3.x
sudo apt-get update
sudo apt-get purge cmake cmake-data
sudo apt-get -y install build-essential cmake
curl -sSLO http://www.mirrorservice.org/sites/ftp.apache.org/orc/orc-1.4.1/orc-1.4.1.tar.gz
tar -zxf orc-1.4.1.tar.gz
cd orc-1.4.1
mkdir build
cd build
cmake .. -DBUILD_JAVA=OFF
make && sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment