iOS - Error running pod install 해결 방법
iOS Build시 pod install 관련 에러가 발생하는 경우가 있다.
Error 내용을 자세히 보면 'Returing local because checking is only performed in repo update'라는 문구가 반복적으로 나타나는 것을 확인할 수 있다.
Silicon 맥인 경우
arch -x86_64 pod repo update
arch -x86_64 pod install
Intel 맥인 경우
pod repo update
pod install
※ Podfile이 위치한 경로에서 명령어를 입력해야한다.
'iOS' 카테고리의 다른 글
iOS - [Error 해결] File not found: libarclite_iphoneos.a (0) | 2023.05.17 |
---|---|
iOS 점유율 확인 사이트 (0) | 2023.03.21 |