表題の件。
■ 環境
- Homebrew
- Mac OSX El Capitan
■ brew update
`brew update`したところ下記のようなエラーが出た。
$ brew update
==> Homebrew has enabled anonymous aggregate user behaviour analytics.
Read the analytics documentation (and how to opt-out) here:
https://docs.brew.sh/Analytics.html
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
Error: Failure while executing: git config --local --replace-all homebrew.analyticsmessage true
なんだろう?と思いつつも、再度実行してみたところ問題はなかったので気にしないことにしていた。
$ brew update
Already up-to-date.
$
`brew search`で検索して、`brew info`で確認しようとしたところ、下記のように”Dependencies“の箇所に同様のエラーが出ていた。
$ brew info ...
:
==> Dependencies
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
Required: erlang@17 ✘
==> Requirements
Required: macOS >= 10.8 ✔, arch ✔
$
下記で解決できるようだったので実施。
$ xcode-select --install
xcode-select: note: install requested for command line developer tools
$
“インストール”を押してしばし待機。完了後に再度`brew info`を実施したがエラーは出なくなった。
以上。