通过Homebrew安装PostgreSQL时出错

wh6knrhe  于 2023-10-18  发布在  PostgreSQL
关注(0)|答案(2)|浏览(221)

我能够安装homebrew没有问题,但当我尝试安装postgresql我得到以下错误消息:

➜  ~ brew install postgresql
Warning: No available formula with the name "postgresql".
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching for a previously deleted formula (in the last month)...
Error: No previously deleted formula found.
==> Searching taps on GitHub...
Error: No formulae found in taps.

screen shot of error messages
有办法解决吗

hts6caw3

hts6caw31#

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

这将切换到主服务器,然后运行

brew doctor

这应该运行没有任何错误。
如果没有错误,您可以使用brew install安装任何东西。
例如:
安装postgresql

z9smfwbn

z9smfwbn2#

我遇到了同样的问题,我通过运行brew tap homebrew/core修复了这个问题。
之后,可以使用以下命令安装postgresql:
brew install postgresql

相关问题