$ flutter doctor の指摘「CocoaPods not installed.」を解消するの?|Homebrew|Mac|Xcode|iOS|Flutter
Flutter 公式のドキュメント macOS install の Run flutter doctor に記載されている通りに、セットアップに必要な依存関係をチェックしていたら、以下の不足が出た。
[!] Xcode - develop for iOS and macOS (Xcode 14.2)
✗ CocoaPods not installed.
CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side.
Without CocoaPods, plugins will not work on iOS or macOS.
For more info, see https://flutter.dev/platform-plugins
To install see
https://guides.cocoapods.org/using/getting-started.html#installation for instructions.
「CocoaPods」なるものがインストールされていないとな。で、iOS と macOS で動作させるなら必須だってか。
そのインストール方法は Deploy to iOS devices にコマンド「$ sudo gem install cocoapods」だと書いてあったが、これ、実行すると調べても解決できない別のエラーが発生して、ハマりにハマった…。
#Homebrew でインストールするの?
Homebrew という”macOS 用のパッケージマネージャー”でインストールすれば、あっさり解決するという情報が強くて、実際に、その通りだった。
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
これで Homebrew をインストール完了。「$ brew -v」で確認してみて。
さて、肝心の「CocoaPods」のインストール。
$ brew install cocoapods
以上!
これでもう一度「$ flutter doctor」したらオッケー!
#関連する記事
- パスを設定するなら ChatGPT に聞くが早いよ?|Mac|SDK|Flutter
- $ flutter doctor のエラー「cmdline-tools component is missing」を解決するの?|Mac|Android|Flutter
- $ flutter doctor のエラー「Android license status unknown.」を解消するの?|Mac|Android|Flutter
- $ flutter doctor の指摘「Xcode installation is incomplete; a full installation is necessary for iOS development.」をクリアするの?|Mac|Xcode|iOS|Flutter
- $ flutter doctor の警告「Warning: `dart` on your path resolves to …, which is not inside your current Flutter SDK checkout at …」をクリアするの?|Mac|SDK|Dart|Flutter
- Windows の Android Studio で開発した Flutter アプリを Mac で iOS 向けに引き継ぎたいの?|Mac|iOS|Flutter
#参照した記事
- FlutterでCocoaPods not installed.と言われたら
- How to update cocoapods for flutter on Mac without getting an error?
- 【Mac M1】「flutter doctor」実行時の「CocoaPods not installed.」の解決法
- brew|command not foundコマンドが見つかりませんの対処
- Installing "CocoaPods"
- issue with cocoapods installation
- Flutterの開発環境を整える:Xcode、cocoapods、Homebrew
#直近に読んでいた漫画(おすすめ)
コメント
コメントを投稿