React Nativeの環境構築においてのwatchmanのエラーを解決したいです
参考書を読みながらReact Nativeの環境構築をしているのですが、node等のインストールを終え、Xcodeでアプリを起動しようとすると、アプリが起動されません。
エラーメッセージ
npx react-native run-ios
上記のコードで実装したところ、以下のようなエラーが出ました
error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening MyApp.xcworkspace. Run CLI with --verbose flag for more details.
環境診断
npx react-native doctor
エラーの原因がわからなかったので環境診断したところ以下の結果が出ました。
✖ Watchman - Used for watching changes in the filesystem when in development mode - Version found: 2021.06.07.00 - Version supported: 4.x Android ✖ ANDROID_HOME ✖ Android SDK - Required for building and installing your app on Android - Versions found: N/A - Version supported: 28.0.3 iOS ✓ Xcode - Required for building and installing your app on iOS ✓ CocoaPods - Required for installing iOS dependencies ● ios-deploy - Required for installing your app on a physical device with the CLI
試したこと
おそらく上記のエラーメッセージからwatchmanのバージョンが合ってないのが原因だと思うのですが、watchamanをアンインストールしてバージョン4.9.0をインストールしようとしたのですが下記のようなエラーが発生し、インストール出来ませんでした。
~ % brew install watchman@4.9.0 Updating Homebrew... ==> Auto-updated Homebrew! Updated 1 tap (homebrew/core). ==> Updated Formulae Updated 9 formulae. ==> Searching for similarly named formulae... Error: No similarly named formulae found. Error: No available formula or cask with the name "watchman@4.9.0". ==> Searching for a previously deleted formula (in the last month)... Error: No previously deleted formula found. ==> Searching taps on GitHub... Error: No formulae found in taps.
watcmanが原因だと思うのですが、違うのでしょうか?
わかる方教えてください。
補足情報
Homebre v3.1.12
node v12.16.1
watchman v2021.06.07.00
あなたの回答
tips
プレビュー