React Nativeで、以下コマンドで、iOSシミュレータを起動して実行しようとしらエラーが出た。
エラーの内容は以下。
xcrun: error: unable to find utility “instruments”, not a developer tool or in PATH
Command failed: xcrun instruments -s
xcrun: error: unable to find utility “instruments”, not a developer tool or in PATH
Error: Command failed: xcrun instruments -s
xcrun: error: unable to find utility “instruments”, not a developer tool or in PATH
at checkExecSyncError (child_process.js:616:11)
at Object.execFileSync (child_process.js:634:13)
at Object.runIOS [as func] (/{プロジェクトのパス}/AwesomeProject/node_modules/react-native/local-cli/runIOS/runIOS.js:76:17)
at Promise.resolve.then (/{プロジェクトのパス}/AwesomeProject/node_modules/react-native/local-cli/cliEntry.js:117:22)
React Nativeの、マニュアルを見直すと、Xcodeのコマンドラインツールの設定をスルーしていた…
Xcode > Preferences… > Locationsで、Command Line Toolsの部分を設定すればOK。
コメント