brew doctor のエラー対処
brew docotor したらいろいろエラーが出ていたのでその対処。 Warning: /usr/bin occurs before /usr/local/bin エラーメッセージ `Warning: /usr/bin occurs before /usr/local/bin This means that system-provided programs will be used instead of those provided by Homebrew. The following tools exist at both paths: emacs emacsclient etags gcov-4.2 git git-cvsserver git-receive-pack git-shell git-upload-archive git-upload-pack gitk Consider amending your PATH so that /usr/local/bin occurs before /usr/bin in your PATH. ` 原因 デフォルトが bash で zsh を使ったときに$PATH が /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin: のようになってしまうから。 対処 /etc/zshenv を /etc/zprofile にリネームする ...