From 6073277c1e60b1a33bc17fb3a6ddcdbac1a4a705 Mon Sep 17 00:00:00 2001 From: "Uwe L. Korn" Date: Mon, 21 Jan 2019 18:35:47 +0100 Subject: [PATCH 1/2] PARQUET-1498: Add instructions to install thrift via homebrew --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 890b30aaaa..9bbfc470c3 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,13 @@ chmod +x ./configure sudo make install ``` +If you're on OSX and use homebrew, you can instead install Thrift 0.9.x with `brew` and ensure that it comes first in your `PATH`. + +``` +brew install thrift@9 +export PATH="/usr/local/opt/thrift@0.9/bin:$PATH" +``` + ### Build Parquet with Maven Once protobuf and thrift are available in your path, you can build the project by running: From 39ba3b0cf2c12bbb79765bdbe6cd18c5846f18a2 Mon Sep 17 00:00:00 2001 From: Fokko Driesprong Date: Mon, 21 Jan 2019 19:28:24 +0100 Subject: [PATCH 2/2] Update README.md Co-Authored-By: xhochy --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9bbfc470c3..07e1908824 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ sudo make install If you're on OSX and use homebrew, you can instead install Thrift 0.9.x with `brew` and ensure that it comes first in your `PATH`. ``` -brew install thrift@9 +brew install thrift@0.9 export PATH="/usr/local/opt/thrift@0.9/bin:$PATH" ```