Error

[iOS / CocoaPods / Error] Oh no, an error occurred 에러 해결

Minny27 2021. 8. 9. 20:16

CocoaPods를 이용해서 오픈 소스 라이브러리를 설치하는 과정에서

terminal에서 pod init -> Podfile 수정 -> pod install 을 했을 때 위와 같은 에러가 발생했습니다.

찾아보니 해당 에러는 맥북 에어(M1칩)에서 발생하는 에러라고 합니다.

에러를 해결해보겠습니다.

 

 

 

[Step 1] pod init -> sudo vi podfile

터미널에서 먼저 Podfile생성 후, sudo vi podfile을 통해서 해당 부분에 라이브러리를 포함시켜줍니다.

수정할 때는 'i' 클릭

완료 후에는 esc -> wq!

 

 

 

[Step 2] 터미널에 다음 명령문을 순서대로 입력

sudo arch -x86_64 gem install ffi
arch -x86_64 pod install

 

영어로 된 문서들을 두려워하지 말자..!

 

 

 

※ 참고 출처

stackoverflow

 

Load error while trying to install cocoapods in MacBook Air running OSX 11.2.2 with Apple M1 chip

On running pod install getting an error like this. [!] Oh no, an error occurred while Analyzing dependencies Error LoadError - dlopen(/Library/Ruby/Gems/2.6.0/gems/ffi-1.15.0/lib/ffi_c.bundle, 0x00...

stackoverflow.com