我无法在Swift 3.0中安装Kanna。我的PodFile中有以下内容:
use_frameworks!
pod 'Kanna', '~> 2.0.0'
收到以下错误:
[!]无法满足以下要求:
Kanna (~> 2.0.0)
要求- 要求
Podfile
Kanna (~> 2.0.0)
- 要求
Podfile
Kanna (~> 2.0.0)
Podfile
您的所有规范来源都没有包含符合相关性的规范:
Kanna (~> 2.0.0)
。您有:*可以更新的过期源代码库
pod repo update
。 *错误输入了名称或版本。 *没有添加 将Podspec托管到Podfile的源代码。注意:从CocoaPods 1.0开始,
pod repo update
默认情况下不会发生pod install
。
答案 0 :(得分:1)
CocoaPods (0.39或更高版本)是必需的⚠️
您错过'
中的PodFile
:
use_frameworks!
pod 'Kanna', '~> 2.0.0'
如果仍然无法使用提交,则可以尝试以下操作:
pod 'Kanna', :git => 'https://github.com/tid-kijyun/Kanna.git', :commit => '6ae52df72adf42e20147c98c77732d51e0e9294b'