-
-
Save pbanderas/547333a30e2bd46c7c3899e17b6cbb4c to your computer and use it in GitHub Desktop.
Install Apache ORC tools
This file contains hidden or 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
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