美文网首页
pod 报错系列:RPC failed; curl 56 Lib

pod 报错系列:RPC failed; curl 56 Lib

作者: 晓蜻蜓 | 来源:发表于2019-12-19 14:44 被阅读0次

    pod 阿里云SDK时报错如下:

    [!] Error installing AliyunOSSiOS
    [!] /usr/bin/git clone https://github.com/aliyun/aliyun-oss-ios-sdk.git /var/folders/q3/v1s1j7594f9bkf95jtw75vcr0000gq/T/d20191219-38174-1fudigk --template= --single-branch --depth 1 --branch release_2.10.7
    
    Cloning into '/var/folders/q3/v1s1j7594f9bkf95jtw75vcr0000gq/T/d20191219-38174-1fudigk'...
    error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
    fatal: the remote end hung up unexpectedly
    fatal: early EOF
    fatal: index-pack failed
    

    原因说明

    出现这种错误,就是因为curl的postBuffer默认值太小的原因

    解决方案

    git config –global http.postBuffer 524288000

    524288000代表B,524288000B也就是500MB。这个值得大小,可以根据项目酌情设置。
    配置了这个之后再pod install 就没问题了

    相关文章

      网友评论

          本文标题:pod 报错系列:RPC failed; curl 56 Lib

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