美文网首页
cocoaPods 本地库更新出错的处理方法

cocoaPods 本地库更新出错的处理方法

作者: 洛河水手 | 来源:发表于2019-06-27 11:46 被阅读0次

最近由于要使用一个三方框架的最高版本,在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文件。

相关文章

  • cocoaPods 本地库更新出错的处理方法

    最近由于要使用一个三方框架的最高版本,在podflie中指定了版本号。然后在项目文件目录执行 pod update...

  • pod 私有库

    如何创建私有 CocoaPods 仓库 制作 CocoaPods 依赖库 cocoapods本地的类库更新方法 使...

  • CocoaPods配置

    查看ruby 查看gem gem Sources 更新本地库 CocoaPods 更新本地CocoaPods库 P...

  • 本地cocoapods相关

    Cocoapods 在mac中的位置 更新本地私有库

  • CocoaPods使用总结

    CocoaPods 公共库的创建CocoaPods 本地私有库的创建(模板创建方式)CocoaPods 本地私有库...

  • CocoaPods本地库更新

    打开终端执行命令pod repo update报错如下

  • iOS 组件化-本地私有库

    CocoaPods本地私有库 组件化-使用CocoaPods管理的本地私有库,可以分为3种 本地私有引用 本地工程...

  • CocoaPods使用笔记

    CocoaPods 使用指南: 2018.12.4 更新:系统更新导致cocoapods使用出错 升级macOS ...

  • cocoaPods 搜索不到库

    1、更新本地库 pod repo update 2、重新安装sudo gem install cocoapods ...

  • 更新pod出错

    在更新cocoapods 时候,执行 sudo gem install cocoapods 出错:ERROR: ...

网友评论

      本文标题:cocoaPods 本地库更新出错的处理方法

      本文链接:https://www.haomeiwen.com/subject/ujplcctx.html