美文网首页
pod update -- Failed to connect

pod update -- Failed to connect

作者: 简单coder | 来源:发表于2018-05-01 19:29 被阅读23次

    2018年05月01日19:26:22更新点内容:

    这种功能是让我项目是3.2的前提下可以选择某些三方库是4.0版本的语言(把那个3.2改成4.0即可)截图是往低版本指定,例如,有些三方库没有升级到4.0版本,我们需要对它指定到3.2版本,而有些库,例如snapkit,我们使用最新的版本它已经把语言升级到了4.0版本,我们就不能对他进行版本指定,总的来说,你引进来的三方库版本必须要跟你的指定版本是一致的

    Main

    pod update -- Failed to connect to GitHub to update the CocoaPods/Specs specs repo 问题
    这个问题是我在发现pod三方库导入的时候出现的compile error问题后,我想更新pod库,但是发现pod更新出现了这个问题的.

    这是因为:
    Github在不久之前的2018年2月23号移除了一些低加密标准协议,包括TLSv1/TLSv1.1,diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,相关链接在这里:Weak cryptographic standards removed

    这就意味着Mac系统对应的openssl也需要更新。

    更新pod链接戳我

    PS:为了防止链接挂掉,这里复制了其内容如下:

    执行后却报了下面的错误:
    
    Updating spec repo `master`
    [!] Failed to connect to GitHub to update the CocoaPods/Specs specs repo - Please check if you are offline, or that GitHub is down
    
    

    这是为何呢,明明不久前刚刚更新Cocoapods为1.3.1版本啊。

    搜索才发现是Github在不久之前的2018年2月23号移除了一些低加密标准协议,包括TLSv1/TLSv1.1,diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,相关链接在这里:Weak cryptographic standards removed

    这就意味着Mac系统对应的openssl也需要更新。

    这里提供了全套升级办法,搬运过来:

    $ which openssl
    /usr/bin/openssl
    
    $ openssl version
    OpenSSL 0.9.8zh 14 Jan 2016
    
    $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    
    $ brew update
    
    $ brew install openssl
    
    $ brew upgrade openssl
    
    `` If you need to have this software first in your PATH run: echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.bash_profile
    
    $ echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.bash_profile
    $ source ~/.bash_profile
    
    $ which openssl
    /usr/local/opt/openssl/bin/openssl
    
    $ openssl version
    OpenSSL 1.0.2n  7 Dec 2017
    
    $ brew install rbenv ruby-build
    
    $ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
    $ echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bash_profile
    $ source ~/.bash_profile
    
    $ rbenv install --list
    
    Available versions:
      1.8.5-p52
      1.8.5-p113
      1.8.5-p114
      1.8.5-p115
      1.8.5-p231
      1.8.6
    :
      2.5.0-rc1
      2.5.0
      2.6.0-dev
    :
    
    $ rbenv install 2.5.0
    
    $ rbenv versions
    * system (set by /Users/username/.rbenv/version)
      2.5.0
    
    $ ruby --version
    ruby 2.0.0p648 (2015-12-16 revision 53162) [universal.x86_64-darwin16]
    
    $ rbenv global 2.5.0
    
    $ rbenv versions
      system
    * 2.5.0 (set by /Users/username/.rbenv/version)
    
    $ ruby --version
    ruby 2.5.0p0 (2017-12-25 revision 61468) [x86_64-darwin16]
    
    $ gem install cocoapods -n /usr/local/bin
    
    $ which pod
    /usr/local/bin/pod
    
    $ pod --version
    1.4.0
    

    完成上面一系列操作后,Cocoapods将会升级到最新的1.4.0版本。再执行pod repo update master --verbose就没有问题了。

    说起来有点丢人囧,本来想今天出一个demo的,但是由于工作的事情需要出门一整天,照相,体检什么的弄了很久,回来搞demo的时候又被pod卡了一下,不过幸好解决了,也增加了我对Swift中语言升级代理的pod编译库指定的理解.

    相关文章

      网友评论

          本文标题:pod update -- Failed to connect

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