Reputation: 61
Here I have to work on some services which use Apache Thrift 0.13.0, but recently a new version is released and when I use the brew install thrift
command on the terminal it installs the latest Thrift version i.e 0.14.0.
I am unable to install thrift 0.13.0. So please can anyone direct me on how to install thrift 0.13 using brew (I have the tar.gz file of Thrift 0.13.0)?
Upvotes: 6
Views: 6435
Reputation: 1663
https://github.com/alberttwong/homebrew-thrift
brew install alberttwong/thrift/[email protected]
Upvotes: 1
Reputation: 957
This solution worked for me.
Try:
brew tap-new $USER/local-tap
brew extract --version='0.13.0' thrift $USER/local-tap
brew install [email protected]
Source: https://gist.github.com/tonydeng/02e571f273d6cce4230dc8d5f394493c
Upvotes: 12