zoukankan      html  css  js  c++  java
  • cocoapods 错误处理

    error: RPC failed; curl 56 SSLRead() return error -36

    [!] /usr/bin/git clone https://github.com/CocoaPods/Specs.git master
    Cloning into 'master'...
    error: RPC failed; curl 56 SSLRead() return error -36
    fatal: The remote end hung up unexpectedly
    fatal: early EOF
    fatal: index-pack failed

    解决方案: 
    打开终端命令行,输入以下命令:

    sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer

    注意:1."/Applications/Xcode.app/Contents/Developer"此路径是当前默认XCode的所在位置,如果安装了多个XCode需要多加注意

       2.做了以上操作之后还会报错,将XCode删除,重新安装

    PS:获取当前XCode路径,在终端中输入

    $ xcode-select --print-path
    ================================================================================================================================================



    ================================================================================================================================================

    error: RPC failed; curl 56 SSLRead() return error -9806

    解决方案: 

    打开终端命令行,输入以下命令:

    $ git config --global http.postBuffer 524288000
    $ pod setup
    ================================================================================================================================================



    ================================================================================================================================================

    ERROR:  While executing gem ... (Errno::EPERM) Operation not permitted - /usr/bin/xcodeproj

    解决方案:

    打开终端输入以下命令

    $ sudo nvram boot-args="rootless=0"
    $ sudo reboot
    $ sudo gem install cocoapods -V
  • 相关阅读:
    【转载】Python中如何高效实现两个字典合并,三种方法比较。
    闭包在python中的应用,translate和maketrans方法详解
    python中的多线程【转】
    二叉树非递归遍历方法小结
    Mac OS X 10.9 编译C++11
    LeetCode--Reverse Words in a String
    LeetCode ---Anagrams() 详解
    KMP算法的代码实现
    Mac OS10.9 下python开发环境(eclipse)以及自然语言包NLTK的安装与注意
    秋季面试准备(1)——atoi的实现以及C++库函数stringstream
  • 原文地址:https://www.cnblogs.com/czq1989/p/6593645.html
Copyright © 2011-2022 走看看