我试图用ReactiveKit将CocoaPods添加到我的Xcode项目中。
那是我的豆荚文件:
platform :ios, '8.0'
source 'https://github.com/CocoaPods/Specs.git'
target '<my-proj-name-here>' do
use_frameworks!
pod 'SideMenu'
pod 'ReactiveKit'
pod 'Bond'
end我从命令行运行了以下行:
pod cache clean --all
pod deintegrate
pod install显示了大量错误:

发布于 2017-06-03 18:46:00
我对cocapods还不够熟悉。以下命令解决了这个问题:
重新安装:
sudo gem install cocoapods更新包("pod安装“不安装最新版本)
pod updatehttps://stackoverflow.com/questions/44332788
复制相似问题