首页 > 代码库 > Unable to satisfy the following requirements解决方式
Unable to satisfy the following requirements解决方式
今天从git上面download我们项目,然后向往常一样安装Cocoapods。可是却突然发现报错了,尝试了几遍。发现一直报错。
然后我这才看了一下,安装Cocoapods的日志,发现抛出了一个报错。
[!] Unable to satisfy the following requirements:
- `MJExtension` required by `Podfile`
- `MJExtension (= 2.4.4)` required by `Podfile.lock`
哎。之前没有见过这个错误,我不知道从何着手解决问题。
然后,開始使用我们程序猿的神器,就是Google啦。非常难想象假设没有Google。多少程序猿要丢饭碗。看到了一个博客分享了自己的解决方式,例如以下:
因此我们要用pod命令进行安装。cd到Example文件夹下运行pod install命令,将会报错:
[plain] view plaincopy
- $ pod install
- Analyzing dependencies
- Fetching podspec for `UAAppReviewManager` from `..`
- [!] Unable to satisfy the following requirements:
- - `UAAppReviewManager (from `..`)` required by `Podfile`
因此我们要用update命令获取最新版本号的类库:
[plain] view plaincopy
- $ pod update
- Analyzing dependencies
- Fetching podspec for `UAAppReviewManager` from `..`
- Downloading dependencies
- Installing UAAppReviewManager (0.2.1)
由此可知,出现这个错误的原因是。我本地Podfile文件上的MJExtension第三方版本号太低。解决方式就是。更新一下本地Podfile文件上的MJExtension第三方版本号。也就是pod update --verbose一下。注意一下。这个命令须要非常长时间。
一直停在这个页面。。。。
zuodeMacBook-Air:mokodreamwork_ios2 zuo$ pod update --verbose Update all pods
Preparing
Updating local specs repositories
Updating spec repo `master`
Preparing
Updating local specs repositories
Updating spec repo `master`
大家千万不要关掉页面,等半个小时吧,就会更新好。
例如以下界面:
表示更新成功,问题也攻克了,然后就能够打开我们从git上面download的project了。
本文參考资料
使用CocoaPods(一)为项目配置第三方类库
Unable to satisfy the following requirements解决方式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。