flutter doctor를 실행하니 에러가 존재한다.
[!] Xcode - develop for i05 and macOS (Xcode 15.4)
x 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 iS 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를 설치해야할 듯 하다.
$ sudo gem install cocoapods
터미널을 열고 입력한다.
맥북 로그인 비밀번호를 요구한다.
입력하면 한동안 응답이 없다.
기다려준다.
곧 설치되는 모습을 볼 수 있다.
The last version of drb (>= 0) to support your Ruby & RubyGems was 2.0.6.
Try installing it withgem install drb -v 2.0.6
and then running the current command again
drb requires Ruby version >= 2.7.0. The current ruby version is 2.6.10.210.
drb라는 것의 버전이 낮다고 한다.
설명대로 아래의 명령어를 입력한다.
$ gem install drb -v 2.0.6
permission 문제가 있다.
해당 에러에 관해서는 해결방법를 참고하자.