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

当前回答

它帮助我。只需运行follow命令:

echo '# Set PATH, MANPATH, etc., for Homebrew.' >> /Users/gureenkov56/.zprofile
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/gureenkov56/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"

其他回答

因为你正在使用zsh,你需要添加路径到你的。zshrc文件:

vim ~ / . zshrc

Add:

export BREW_HOME="/home/linuxbrew/.linuxbrew/bin"
export PATH="$PATH:$BREW_HOME"

我尝试了上面的方法 导出路径= / opt /组装/ bin:美元的道路 但是没有用。

所以我做了我的研究,并意识到上述代码适用于苹果芯片Mac,而不是英特尔芯片Mac。

所以我对代码进行了编辑,因为我的Mac是基于英特尔的,我这样做了,工作完美:

在查找器中,打开/编辑.zshrc文件,如果找不到,则创建一个。 粘贴以下代码:

导出路径= / usr /地方/组装/ bin:美元的道路

会有用的!!

在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被同名的全局变量遮蔽。

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

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

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

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

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

来源 ~/.zshrc

就是这样!希望有帮助。

今天早上我也遇到了同样的问题。问题是自制程序的路径设置不正确。

遵循以下步骤

1.正确安装自制软件。在cmd下面的终端类型中。

ruby / usr / bin / e,“美元(卷毛-fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”

在.zshrc文件中设置终端类型的路径 打开~ / . zshrc 在.zshrc文件中添加如下路径 导出路径= " / usr /地方/ bin:美元路径” 在终端类型源~/.zshrc 这样就完成了。