事象 : xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- 環境
- macOS Big Sur バージョン11.1
- Homebrew 2.7.1
% brew update
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
Updated 3 taps (homebrew/core, homebrew/cask and homebrew/cask-fonts).
#...省略...
原因 : OSのアップデートでXCodeのCommandLineTools/usrディレクトリのbinディレクトリが紛失したから?
ぐぐってみるていくつかのサイトを見るとOSのアップデート後にちょくちょくあるらしい。
# おぉ、エラーメッセージにあるbinディレクトリがない!
% ls -la /Library/Developer/CommandLineTools/usr
total 0
drwxr-xr-x 3 root wheel 96 12 16 19:42 .
drwxr-xr-x 3 root wheel 96 12 16 19:42 ..
drwxr-xr-x 3 root wheel 96 12 16 19:42 share
対応 : xcode-select
をインストールする
# xcode-selectをダイアログに従ってインストールする
% xcode-select --install
xcode-select: note: install requested for command line developer tools
# エラーが消えたか確認する
% brew update
Updated 1 tap (homebrew/core).
No changes to formulae.
事象 : Warning: Xcode alone is not sufficient on Mojave.
- 環境
- macOS Mojave バージョン10.14.5
- Homebrew 2.1.6
$ brew doctor
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry or file an issue; just ignore this. Thanks!
Warning: No developer tools installed.
Install the Command Line Tools:
xcode-select --install
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
Warning: Xcode alone is not sufficient on Mojave.
Install the Command Line Tools:
xcode-select --install
原因 : Xcode.appを削除したから
そもそもXcode.appを削除したことがことの始まりだったのだろう・・・。
MacにおいてXcodeは大切なものだったらしい・・・諦めてインストールする。
対応 : xcode-select
をインストールする
- Command Line Toolsをインストールする
- Appleのサイトからdmgファイルをダウンロードする
- pkgをクリックしてダイアログに沿ってインストールする
-
xcode-select
をインストールする - Warningが消えたか確認する
# xcode-selectをインストールする
$ xcode-select --install
xcode-select: note: install requested for command line developer tools
# Warningが消えたか確認する
$ brew update
Already up-to-date.
$ brew doctor
Your system is ready to brew.
失敗した対応 : Xcodeは使わないからアンイストールする
- 最初の考察 : 「Xcodeを使うにはコマンドラインツールが必要」 > 「Xcodeは使わないからアンイストールする」
- 以前、
Xcode.app
を/Applications
から削除したが不十分だった模様。
- 以前、
- 考察からの対応 : Xcode関連のファイルを削除していく。
# /Library/Preferences/配下
$ find /Library/Preferences/ -type f | grep -i xcode
/Library/Preferences//com.apple.dt.Xcode.plist
$ find /Library/Preferences/ -type f | grep -i xcode | sudo xargs rm
$ find /Library/Preferences/ -type f | grep -i xcode
$
# ~/Library/Preferences/配下
$ find Library/Preferences/ -type f | grep -i xcode
Library/Preferences//com.apple.dt.xcodebuild.plist
Library/Preferences//com.apple.dt.Xcode.plist
Library/Preferences//com.apple.preferences.extensions.XcodeSourceEditor.plist
Library/Preferences//com.apple.preferences.extensions.XcodeSourceControlHost.plist
$ find Library/Preferences/ -type f | grep -i xcode | xargs rm
$ find Library/Preferences/ -type f | grep -i xcode
$
# ~/Library/Caches/com.apple.dt.Xcode/配下
$ find Library/Caches/ -type f | grep -i xcode
Library/Caches//com.apple.dt.Xcode/fsCachedData/70D9F1CB-B3B7-4605-AD98-4C911D694D14
Library/Caches//com.apple.dt.Xcode/Cache.db-shm
Library/Caches//com.apple.dt.Xcode/Cache.db-wal
Library/Caches//com.apple.dt.Xcode/Cache.db
$ find Library/Caches/ -type d | grep -i xcode | xargs rm -rf
$ find Library/Caches/ -type f | grep -i xcode
$
# ~/Library/Application Support/com.apple.sharedfilelist/配下
$ find Library/Application\ Support/com.apple.sharedfilelist/ -type f | grep -i xcode | sed -e 's/ /\\ /g'
Library/Application\ Support/com.apple.sharedfilelist//com.apple.LSSharedFileList.ApplicationRecentDocuments/com.apple.dt.xcode.sfl
Library/Application\ Support/com.apple.sharedfilelist//com.apple.LSSharedFileList.ApplicationRecentDocuments/com.apple.dt.xcode.sfl2
$ find Library/Application\ Support/com.apple.sharedfilelist/ -type f | grep -i xcode | sed -e 's/ /\\ /g' | xargs rm
$ find Library/Application\ Support/com.apple.sharedfilelist/ -type f | grep -i xcode
$
# ~/Library/Application Support/Xcodeディレクトリ
$ find Library/Application\ Support/ -maxdepth 1 -type d | grep -i xcode
Library/Application Support//Xcode
$ find Library/Application\ Support/ -maxdepth 1 -type d | grep -i xcode | sed -e 's/ /\\ /g' | xargs rm -rf
$ find Library/Application\ Support/ -maxdepth 1 -type d | grep -i xcode
$
# ~/Library/Developer/Xcodeディレクトリ
$ find Library/Developer/ -maxdepth 1 -type d | grep -i xcode
Library/Developer//Xcode
$ find Library/Developer/ -maxdepth 1 -type d | grep -i xcode | sed -e 's/ /\\ /g' | xargs rm -rf
$ find Library/Developer/ -maxdepth 1 -type d | grep -i xcode
# ~/Library/Developer/CoreSimulator/配下にはなかった
$ find Library/Developer/CoreSimulator/ -type f | grep -i xcode
$
# 今一度doctorする
$ brew doctor
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don`t worry or file an issue; just ignore this. Thanks!
Warning: No developer tools installed.
Install the Command Line Tools:
xcode-select --install
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
Warning: Xcode alone is not sufficient on Mojave.
Install the Command Line Tools:
xcode-select --install
# がーーん、だめだった・・・じゃ、update・・・で悪化していることに気がついた
$ brew update
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
Updated 3 taps (homebrew/cask-versions, homebrew/core and homebrew/cask).
# 省略