0

I need to install protobuf 2.6.1

brew install protobuf gives me 3.1.0, the current version

How do I install protobuf 2.6.1 on Mac?

Thanks.

shylas
  • 89
  • 3
  • 12
  • Can you check [this answer](http://stackoverflow.com/a/4158763/2383721) to see if any of these techniques will get you the version you want? If not, you could install it from [the git repo](https://github.com/google/protobuf) with tag `v2.6.1`. – Daniel Underwood Jan 05 '17 at 01:55

1 Answers1

2

Someone maintains versioned recipes for home brew, you can use this:

brew install https://raw.githubusercontent.com/paulirish/homebrew-versions-1/master/protobuf260.rb
  • The recipe appears to be out of date. I get a 404 when it attempts to download at `https://homebrew.bintray.com/bottles/protobuf260-2.6.0.yosemite.bottle.tar.gz` – Daniel Holmes Jun 03 '20 at 15:31