본문 바로가기

swift 에러

CocoaPods Intermittent CDN issues 해결

반응형

pod install을 하는데 CDN 이슈가 발생했다.

 

해당 프로젝트 터미널에서

 

pod repo remove trunk

를 한후

해당 pod file에서 

source 'https://github.com/CocoaPods/Specs.git'
# source 'https://cdn.cocoapods.org/'

넣어준다.

 

마지막으로 pod install과 pod repo update를 하면 해결된다 ㅠ

 

pod install을 할 때 20분 정도 넘게 걸려서 찾아보니 다들 비슷한 문제를 겪는다고 기다리라고 한다!

 

 

 

밑에 있는 블로그를 참고하였으니 따라가면 해결할 수 있을 것이다!

https://lifesaver.codes/answer/intermittent-cdn-issues-10078

 

[Solved] CocoaPods Intermittent CDN issues

The workaround to get working locally during this outage or CDN issue - guessing a DNS change or something?: pod repo remove trunk In Podfile Then pod install and pod repo update will work again

lifesaver.codes

 

반응형