web-dev-qa-db-ja.com

brewをインストールした後、「command not found:brew」が表示されます

➜  ~ /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
9
Elad Benda2

Homebrewがコンピューターにインストールされました。次のようにPATHを変更する必要があります。

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

または、Originからbrewを実行します。

/usr/local/bin/brew install maven
25
Hamid Rohani

必ず最初にbrewをインストールしてください

Ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
1
Yao Li