如何卸载 php70 或隐藏 homebrew 错误信息

如何卸载 php70 或隐藏 homebrew 错误信息

每次我在 Mac 上打开终端时,我都会从 Homebrew 收到以下消息:

Error: No available formula with the name "homebrew/php/php70" Please tap it and then try again: brew tap homebrew/php

我尝试了几种不同的方法来解决这个过时的公式问题,但都没有奏效。有没有办法至少抑制这个错误消息,因为我认为我已经安装了正确的 php 版本,从而避免了修复此问题

答案1

我正在使用 ZSH,也遇到了同样的问题。每次打开新终端时,我都会遇到:

Error: No available formula with the name "homebrew/php/php70"
Please tap it and then try again: brew tap homebrew/php

在我的 ~/.zshrc 中我有以下行:

export PATH="$(brew --prefix homebrew/php/php70)/bin:$PATH"

我删除了它,因为它不再使用并且我不再收到该警告信息。

答案2

您可能仍然在或等效文件中引用旧路径.bash_profile。删除该行后,该消息就会消失。

相关内容