➜  ~ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
-e:77: warning: Insecure world writable dir /usr/local/bin in PATH, mode 040677
It appears Homebrew is already installed. If your intent is to reinstall you
should do the following before running this installer again:
    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
The current contents of /usr/local are bin CODEOFCONDUCT.md etc git lib Library LICENSE.txt munki README.md sbin share .git .github .gitignore
➜  ~ brew install maven
zsh: command not found: brew

当前回答

确保先安装brew

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

其他回答

我在macOS Big Sur(11.0.1)上遇到了类似的问题。在我的例子中,homebrew保存在/opt/homebrew/,而不是/usr/local/....

所以我补充道

导出路径= / opt /组装/ bin:美元的道路

到我的主目录中的.zshrc文件,并且ZSH shell能够找到brew命令。

16.11.2022 -更新 在brew安装期间,我得到了多行通知我将在哪里安装brew。终端对我说:

This script will install:
...
/usr/local/Homebrew

我需要的路径是最后一个。解决问题的步骤:

编辑.zshrc文件。类型: 纳米~ / . zshrc 在编辑器中添加一行: 导出路径= / usr /地方/组装/ bin:美元的道路 点击Control+X退出编辑器,Y接受更改,返回接受文件将保存的位置。

毕竟,您需要刷新您使用的终端。您可以关闭它的进程并打开或键入:

来源 ~/.zshrc

就是这样!希望有帮助。

我将演示来自@Spindizzy的答案:

cd ~ | ls -a
touch .zshrc // if file .zshrc doesn't exists we create it
vim .zshrc

将PATH=/opt/homebrew/bin:$PATH粘贴到那里,保存文件并重启终端。

Vim助手:

1. press "i" to interactive mode in vim, paste:
export PATH=/opt/homebrew/bin:$PATH
2. press "esc" type ":wq" and hit enter

也许你已经从homebrew主页上遵循了这一步。

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

所以可能你的系统不能分配路径,所以遵循以下步骤。

sudo nano /etc/paths

粘贴

/opt/homebrew/bin:$PATH

保存并关闭

您应该同时将/opt/homebrew/bin和/opt/homebrew/sbin添加到$PATH env中。

导出路径= / opt /组装/ bin: / opt /组装/ sbin: $路径

快捷方式:运行command

echo export PATH=$PATH:/opt/homebrew/bin:/opt/homebrew/sbin >> ~/.zshrc . sh

然后运行酿酒医生检查