관리 메뉴

개발 여행자, 현

[React Native] abort pod install 에러 (pod install 에러) 본문

ReactNative

[React Native] abort pod install 에러 (pod install 에러)

예스현 2022. 9. 14. 11:41
[React Native] abort pod install 에러 (pod install 에러)

1. 개요

리액트 네이티브 프로젝트를 처음 만들고 

ios폴더에서 pod install을 입력하였더니 

19000 abort pod install 

에러가 발생하였다.

 

2. 해결방법

맥북 M1을 사용하고 있으나 pod install만 입력해서 발생한 오류였다.

# Uninstall the local cocoapods gem
sudo gem uninstall cocoapods

# Reinstall cocoapods via Homebrew
brew install cocoapods

이미 cocoapods이 잘 설치되어 있다면 위 과정은 생략해도 된다.

# STEP 1: Install ffi
sudo arch -x86_64 gem install ffi

# STEP 2: Re-install dependencies
arch -x86_64 pod install

 

하지만 M1을 쓰고 있다면 위 명령어는 필수로 입력해야 한다.

 

3. 참고자료

https://stackoverflow.com/questions/64901180/how-to-run-cocoapods-on-apple-silicon-m1