Cocoapods: Failed to connect to GitHub to update the CocoaPods/Specs specs repo

前端 未结 16 596
粉色の甜心
粉色の甜心 2020-11-30 16:25

When running pod repo update the following error is generated:

Updating spec repo `master`
[!] Failed to connect to GitHub to update the CocoaPo         


        
相关标签:
16条回答
  • 2020-11-30 17:24

    I also encountered the same issue. In my scene, i used a mirror repo (hosted elsewhere) of cocoapods specs on github. When i updated the specs repo, it worked!

    cd ~/.cocoapods/repos/master
    git pull
    
    0 讨论(0)
  • 2020-11-30 17:25

    You can try this:

    $sudo rm -fr ~/.cocoapods/repos/master
    $pod setup
    $pod install
    

    but in my case I had to:

    • delete the Podfile.lock and then

    • $pod install

    0 讨论(0)
  • 2020-11-30 17:27
    1. Remove all of cocoapods package. See here for information on how to do this.

    2. Then reinstall cocoapods. $ sudo gem install cocoapods

    0 讨论(0)
  • 2020-11-30 17:29

    I was also facing the same problem. I solved it only by accessing two commands from terminal.

    sudo gem uninstall nanaimo

    and then

    sudo gem install nanaimo

    Hope so it will help.

    0 讨论(0)
提交回复
热议问题