美文网首页
cocoapods1.0的版本更新和pod本地类库更新

cocoapods1.0的版本更新和pod本地类库更新

作者: 狼之独步 | 来源:发表于2016-11-22 12:06 被阅读11次

    在运行 “sudo gem install cocoapods” 的时候出现问题:ERROR: While executing gem ... (Errno::EPERM)
    Operation not permitted - /usr/bin/fuzzy_match

    则可以改为:
    sudo gem install -n /usr/local/bin cocoapods

    最近好像cocoapods 发出了1.0的版本。我试着去更新了一下。
    sudo gem install -n /usr/local/bin cocoapods --pre
    非常nice的就更新了。

    $ pod install
    Analyzing dependencies
    Fetching podspec for UAAppReviewManager from ..
    [!] Unable to satisfy the following requirements:

    • UAAppReviewManager (from..) required by Podfile

    原因是要添加的类库已经有最新版本推出,而Podfile文件并没有更改其下载版本(Podfile文件过期),于是获取安装数据失败。
    因此我们要用update命令获取最新版本的类库:

    相关文章

      网友评论

          本文标题:cocoapods1.0的版本更新和pod本地类库更新

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