美文网首页iOS大咖说
Cloning spec repo `cocoapods-1`

Cloning spec repo `cocoapods-1`

作者: gaookey | 来源:发表于2020-09-20 23:40 被阅读0次
    source 'https://github.com/CocoaPods/Specs.git'
    
    platform :ios, '11.0'
    
    use_frameworks! 
    inhibit_all_warnings! 
    
    target ‘demo’ do
    
      pod 'SnapKit'
    
    end
    

    pod install 时一直卡在

    Cloning spec repo `cocoapods-1` from `https://github.com/CocoaPods/Specs.git`
    

    解决办法

    pod setup
    
    cd ~/.cocoapods/repos
    
    git config --global http.postBuffer 524288000
    
    git clone --depth 1 https://github.com/CocoaPods/Specs.git master
    

    然后是漫长的等待......

    相关文章

      网友评论

        本文标题:Cloning spec repo `cocoapods-1`

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