TheRennen
TheRennen

Reputation: 589

Error installing rabbitmq on Mac using brew

Receiving the following error:

Error: No available formula with the name "rabbitmq"

Tried reinstalling brew and updating brew with no help.

Upvotes: 0

Views: 1497

Answers (2)

Omar Bahir
Omar Bahir

Reputation: 1267

its because your brew installation has some problems. Just try to reset it to master branch by running following command

git -C $(brew --repository homebrew/core) checkout master

then run

brew update

after that you can run

brew install rabbitmq

and it should be working.

Upvotes: 1

chenrui
chenrui

Reputation: 9876

Like @gino-mempin commented, you should be able to install by using brew install rabbitmq.

You can use brew doctor and brew config to verify if you have local brew setup issue.

With that being said, we failed to update rabbitmq to latest 3.8.5 (there are several failed attempts).

Upvotes: 0

Related Questions