RN - iOS - None of your spec sources contain a spec satisfying the dependency: `AMap3DMap (~> 6.6...

weixin_34185364發表於2019-03-05

pod install的時候報錯:

None of your spec sources contain a spec satisfying the dependency: `AMap3DMap (~> 6.6.0)`.

4945909-5a7f1e0699ba55ad.png
報錯截圖

解決方法:

刪除Podfile.lock檔案

pod setup

然後重新pod install即可。

4945909-64421922fe65353e.png
解決方法截圖


pod setup的作用:

所有的專案的 Podspec 檔案都託管在https://github.com/CocoaPods/Specs。第一次執行pod setup時,CocoaPods 會將這些podspec索引檔案更新到本地的~/.cocoapods/目錄下,這個索引檔案比較大,有 300多M 左右,在執行一次pod install之後會增加到700多M。所以第一次更新時非常慢。

相關文章