본문 바로가기
Engineering/꿀팁, 꿀정보

mac flutter 개발 환경 설치 (Mac OS 13 Ventura) - Error installing cocoapods 이슈 해결

by 알탱2 2022. 10. 31.
반응형

기본 설치 순서는 아래 블로그를 참고하였다.

https://tifferent.tistory.com/51

 

mac flutter 개발 환경 준비 (flutter, android studio, xcode 설치)

1. https://docs.flutter.dev/get-started/install/macos 에서 flutter 다운로드 Apple silicon인 경우 sudo softwareupdate --install-rosetta --agree-to-license 2. 적당한 폴더에 flutter 압축을 풀고 PATH..

tifferent.tistory.com

 

 


위 블로그를 그대로 따라하다 보니 최근에 Mac OS 13 Ventura로 업데이트가 된 내 PC에서 xcode 설치 과정의 아래 명령어에서 Error 가 발생하였다 ㅜㅜ

sudo gem install cocoapods

에러 내용 일부 : 

Building native extensions. This could take a while...
ERROR:  Error installing cocoapods:
	ERROR: Failed to build gem native extension.

    current directory: /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.5/ext/ffi_c
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/bin/ruby -I /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0 -r ./siteconf20221031-76702-113kj4g.rb extconf.rb
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.

(생략)

 

 

맥린이인 나로서는 당황... 하지만 아래 명령어로 해결!

brew install cocoapods     
brew link cocoapods

** 출처 : 링크

** 참고 삽질기) 위 링크에서 가이드 된 내용 중 우선 sudo gem install -n /usr/local/bin cocoapods -v 1.8.4 명령어로 설치 성공을 했었으나, flutter doctor 명령어로 확인 결과 1.8.4 버전은 Out of date 라고 warning이 발생하였고, 그에 따라 위 brew 명령어를 통해 최신 버전(14.0.1)을 설치 성공하였다.

반응형

댓글