[!] CDN: trunk URL couldn't be downloaded: https://cdn.cocoapods.org/CocoaPods-version.yml Response: URL using bad/illegal format or missing URL

Tags
ios

문제

pod install 하는 과정에서 문제 발생.
 
notion image
[!] CDN: trunk URL couldn't be downloaded: https://cdn.cocoapods.org/CocoaPods-version.yml Response: URL using bad/illegal format or missing URL
라는 에러 메세지를 뱉는다.
 

해결방법

notion image

Podfile 최상단에 source 추가

notion image

Podfile.lock 파일 제거, trunk 제거

$ rm Podfile.lock $ pod repo remove trunk

pod install 다시 시도

$ pod install
 
notion image
그러면 이제 Cloning spec repo 에서 한참 시간이 걸리더니, pod install이 정상적으로 진행된다.
 
notion image
위 그림과 같이 정상적으로 pod install 이 완료되었다.