最近由于要使用一个三方框架的最高版本,在podflie中指定了版本号。然后在项目文件目录执行 pod update 时,提示在本地仓库中没有找到该版本的第三方框架。然后就想到了cocoaPods 本地master 库有一段时间没有更新了,于是就在终端中执行 pod update,等待一段时间后 出现了如下错误:
[!] CocoaPods was not able to update the `master` repo. If this is an unexpected issue and persists you can inspect it running `pod repo update --verbose`
在网上找了各种方法之后都解决不了问题。之后试着直接在cocoaPods master本地库拉去远程库的最新版本:
$: cd ~/.cocoapods/repos/master
$: git pull
该操作执行时间特别长,需要耐心等待。获取最新master版本数据后,在终端中进入项目目录,重新执行
$:pod update
Update all pods Updating local specs repositories $ /usr/bin/git -C /Users/XXX/.cocoapods/repos/master fetch origin --progress
等待一段时间后 出现如下信息 说明已讲三方库更新至最新版本
Installing SnapKit 5.0.0 (was 4.2.0)
Generating Pods project
Integrating client project
Sending stats
Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.
PS:除上述办法之外,还可以直接在github上的cocoapods项目库(https://codeload.github.com/CocoaPods/Specs/zip/master)中直接下载master文件,然后将本地Users/XXX/.cocoapods/repos/master 中的文件替换为前面下载的master文件。
网友评论