React-Native를 세팅하며 아래와 같이 ERROR: Error installing cocoapods: 같이 cocoapods관련 에러를 겪을 수 있습니다.

$ npm ci

ERROR:  Error installing cocoapods:
        ERROR: Failed to build gem native extension.

    current directory: /Library/Ruby/Gems/2.6.0/gems/ffi-1.16.3/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 ./siteconf20240216-2719-17bp191.rb extconf.rb
checking for ffi.h... *** 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.
$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.16.3/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 ./siteconf20240216-3610-106gojn.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.

이에 관련해 sudo를 통해 해결하는 여러 글들이 있지만, 안타깝게도 공식 Cocoapods 문서에서는 를 사용하여 cocoapods를 설치할 것을 권장하지만 sudo저는 권장하지 않는다고 한다. https://github.com/CocoaPods/CocoaPods/issues/12207

대신 Mac용 Ruby를 사용하여 해당 오류를 해결하는 것을 권장하고 있다.

(Apple Silicon Mac(M1/M2)을 사용하는 경우에만 이 부분을 읽으십시오.)

1단계: Homebrew 및 명령줄 도구 설치


“macOS용 누락된 패키지 관리자” 인 Homebrew를 사용하면 수백 개의 오픈 소스 도구를 쉽게 설치할 수 있습니다. 전체 설치 지침은 Homebrew 문서 에서 확인할 수 있지만 Homebrew 사이트 상단에 나열된 명령만 실행하면 됩니다 .

/bin/bash -c "$(curl -fsSL <https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh>)"

Homebrew 사이트에 나열된 명령은 변경될 수 있으므로 위에 나열된 명령이 동일한지 확인하십시오. 그렇지 않은 경우 알려주시면 업데이트하겠습니다.

명령을 복사하여 터미널 창에 붙여넣고 키를 누른 return다음 터미널에 나타나는 내용을 읽고 입력이 필요한 지침에 주의하세요. 예를 들어 Homebrew는 macOS 비밀번호를 묻는 메시지를 표시합니다. 비밀번호를 입력할 때 터미널은 시각적 피드백을 제공하지 않습니다. 천천히 입력하고 Return 키를 누르세요.

Homebrew는 Apple 명령줄 도구도 자동으로 설치하며 일반적으로 백그라운드에 설치하지만, 변경되는 경우 입력이 필요한 창이 나타나는지 주의하세요.

설치가 성공적으로 완료되면 터미널을 종료했다가 다시 시작한 다음 Homebrew를 사용할 준비가 되었는지 확인합니다.

brew doctor