➜  ~ /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

当前回答

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

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

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

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

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

来源 ~/.zshrc

就是这样!希望有帮助。

其他回答

在Apple M1的fish shell中,我必须将/opt/homebrew/bin添加到fish_user_paths全局环境中。我必须手动这样做,因为set -U fish_user_paths /opt/homebrew/bin $fish_user_paths got

设置:通用变量fish_user_paths被同名的全局变量遮蔽。

对于2022年10月6日的最新版本…

==>下一步:

在终端上运行以下三个命令,将Homebrew添加到PATH: echo '#为Homebrew设置路径,MANPATH等。>> /Users/tusharkhatri/.zprofile Echo 'eval "$(/opt/homebrew/bin/brew shellenv)">> /Users/tusharkhatri/.zprofile $(/opt/homebrew/bin/brew shellenv) 运行brew帮助来开始 进一步的文档: https://docs.brew.sh

只需在主目录中添加export PATH=/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

然后运行酿酒医生检查

你的电脑上已经安装了自制软件。你需要像这样修改你的PATH:

export PATH=/usr/local/bin:$PATH

或者从起始点执行brew:

/usr/local/bin/brew install maven