2017-10-12 33 views
0

The GitHub page for CalendarKit指定爲夫特3設置爲:無法安裝莢 'CalendarKit', '0.1.22' 在夫特3和Xcode的8.3.3

pod 'CalendarKit', '0.1.22' 

但將引發一個錯誤:

[!] Unable to satisfy the following requirements: - CalendarKit (= 0.1.22) required by Podfile None of your spec sources contain a spec satisfying the dependency: CalendarKit (= 0.1.22) .

You have either:
* out-of-date source repos which you can update with pod repo update or with pod install --repo-update .

回答

1

他們提供的信息不正確,他們的Podspec不是最新的。你應該指定Git和你Podfile的commit for 0.1.22下載CalendarKit爲雨燕3:

pod 'CalendarKit', :git => 'https://github.com/richardtop/CalendarKit.git', :commit => '65ace5a' 
1

你能嘗試pod repo update,看看是否有所幫助?

另一個用戶a similar problem和更新CocoaPods規格庫幫助他們。

以下是相應版本的相關podspec,所以它不是規格存儲庫本身的問題。

披露:我是CalendarKit的作者