Search code examples
mongodbcommand-line-interfacemern

Warning: No available formula with the name "[email protected]"


Trying to install mongodb server on my mac using Brew but getting this error. enter image description here

Updated my brew to latest version, still getting this error. Command i used: brew install [email protected]


Solution

  • I figured it out myself. Here is the solution which I found out. I am using mac os on intel processor.

    I first run

    rm -fr $(brew --repo homebrew/core)
    

    then

    brew tap homebrew/core
    

    then

    brew tap mongodb/brew
    

    then installed it

    brew install [email protected]
    

    This worked for me.