Error

[iOS / CocoaPods / Error] CocoaPods could not find compatible versions ... 에러 해결

Minny27 2022. 1. 18. 17:34

CocoaPods를 이용해서 Kingfisher를 설치하다가 위와 같은 에러가 발생했습니다.

왠지 Mac Air라서 생긴 에러인 것 같아서 찾아보니 역시나 M1 칩으로 생긴 오류였습니다.

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

 

 

 

터미널에서 해당 프로젝트 경로로 가서 다음의 명령문을 순서대로 입력

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

 

그래도 안 된다면

 arch -x86_64 pod install --repo-update

 

 

 

※ 참고 출처

stackoverflow

 

Cocoapods subspec issue: None of your spec sources contain a spec satisfying the dependency

I modified a repo on Github to integrate a swift version of my library. https://github.com/iDevelopper/PBRevealViewController However when in a new project I try to pod install I get the error: ...

stackoverflow.com