swiftを勉強するため、xcode(10.2.1)をインストールして、 xcodebuild -version
でバージョン確認しようとしても、エラーになってしまう。
$ swift -version
Apple Swift version 5.0.1 (swiftlang-1001.0.82.4 clang-1001.0.46.5)
Target: x86_64-apple-darwin18.2.0
$ xcodebuild -version
error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
この様にswiftのバージョンチェックはOKだったのだが、xcodebuildのバージョンチェックはエラーに。
command line tools instance
と書いてあるので、Command Line Tools for xcode
を入れて解決と思いきや、同じエラーのまま。
以下のコマンドを入れると xcode-selectは生きている模様。
$ xcode-select -p
/Library/Developer/CommandLineTools
ググってみると、どうやらこのパスがいけないらしい?
$ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
これでどうだ?
$ xcodebuild -version
Xcode 10.2.1
Build version 10E1001
できたー(ふぅ)