我只想在我的mac上安装mongo-shell
我运行brew update然后运行brew install mongodb-org-shell ..。但它并没有安装。下面是错误消息
bash-3.2$ brew install mongodb-org-shell
Error: No available formula with the name "mongodb-org-shell"
==> Searching for a previously deleted formula (in the last month)...
Warning: homebrew/core is shallow clone. To get complete history run:
git -C "$(brew --repo homebrew/core)" fetch --unshallow
Error: No previously deleted formula found.
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching taps...
==> Searching taps on GitHub...
Error: No formulae found in taps.
bash-3.2$ 发布于 2019-10-22 13:14:02
根据我在MongoDB HomeBrew上所发现的,要只安装Mongo,您应该使用:
brew tap mongodb/brew在此之后,安装外壳:
brew install mongodb-community-shellhttps://stackoverflow.com/questions/58504865
复制相似问题