SwiftUIの基本を身につけたい方はこちら

【Git】Gitコマンドを打ったらエラー:xcrun: error: active developer path (“/Applications/ Xcode_13.app/ Contents/ Developer”) does not exist

事象

Gitコマンドを打つと、以下のエラーが表示された。

xcrun: error: active developer path (“/Applications/Xcode_13.app/Contents/Developer”) does not exist
Use `sudo xcode-select –switch path/to/Xcode.app` to specify the Xcode that you wish to use for command line developer tools, or use `xcode-select –install` to install the standalone command line developer tools.
See `man xcode-select` for more details.

原因

自分の場合は、まず、Applicationフォルダー内に、Xcode_13.appXcode_14.appがありました。そして、xcode-selectにて、そのXcodeのパス("/Applications/Xcode_13.app/Contents/Developer")を指定していました。

そして、Xcode_13はもう必要なくなったので削除したところ、このエラーが発生してしまいました。

なので、Xcodeのアプリ名を変更してしまった時に起こる事象なのかなと思います。

解決方法

Xcodeのパスを正しいパスに修正する。

以下のコマンドを打つと、Xcodeのパスを確認できます。

xcode-select -print-path

おそらく古いXcodeのパスだったり、おかしなパスになっているはずです。

パスを確認したら、以下のコマンドを打って、正しいパスに変更してください。パスワードが求められたらMacの画面ロックのパスワードを入力してください。

sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer

評価