Cocoapods setup stuck on pod setup command on terminal

IosGitCocoapodsXcode5

Ios Problem Overview


MacBook-Pro:~ skbc$ pod setup --verbose
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/universal-darwin13/rbconfig.rb:212: warning: Insecure world writable dir /usr/local/bin in PATH, mode 040777

Setting up CocoaPods master repo

Cloning spec repo `master` from `https://github.com/CocoaPods/Specs.git` (branch `master`)
  $ /usr/bin/git clone 'https://github.com/CocoaPods/Specs.git' master
  Cloning into 'master'...

Have gone through resources provided by Cocoapods website, SO and few video tutorials. Nothing happening even after waiting for a couple of hours, however still trying to figure out what may be the problem is?

I would very much appreciate your comments and suggestions.

Ios Solutions


Solution 1 - Ios

It is not stuck. I thought the same until I went to the "Activity Monitor" of the system and checked the "Network" tab.

Then you will see that something is being downloaded. A process called git-remote-http is in charge of this.

Screenshot 1

Just wait! It happened the same for me :)

Good luck!

Solution 2 - Ios

To get a progression, you can clone master yourself:

pod repo remove master
git clone https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/master
pod setup

Solution 3 - Ios

This might be due to the http://blog.cocoapods.org/Repairing-Our-Broken-Specs-Repository/ issue... You will have to remove the repo and re-setup it...

pod repo remove master
pod setup

worked for me

Answered in below question as well, https://stackoverflow.com/questions/18224627/error-on-pod-install

Solution 4 - Ios

I think you need to follow the steps to get rid of the situation and also add --verbose to check whats is happening in front of each command eg:

$ pod setup --verbose
  • pod repo remove master
  • pod setup
  • pod install

Solution 5 - Ios

This is not Stuck or not doing anything its downloading/cloning repository (total size is around 360MB, I am not sure)

  1. Open Activity Monitor

  2. Select Network Tab

  3. Check bellow Google chrome -> git-remote-https

enter image description here

Solution 6 - Ios

For insecure people like me who needs an assurance that cocoapods, in fact, is doing the work, try this. The slowest bottleneck is when cocoapods try to clone the entire repo (~300 MB) into ~/.cocoapods

while true; do
  du -sh ~/.cocoapods/
  sleep 3
done

Solution 7 - Ios

For me in China

I have to use SSH and --depth=1 to boost up!

pod repo remove master
git clone --depth=1 git@github.com:CocoaPods/Specs.git  ~/.cocoapods/repos/master 
pod setup

Solution 8 - Ios

The time required for Pod setup depends on your Internet connection speed. You can check Activity Monitor application regarding this.

Screenshot 1

It is recommended to use pod setup --verbose command instead of pod setup.

This verbose helps you to see detailed stats while pod is being setup.

Screenshot 2

Solution 9 - Ios

I had the same problem with pod install and pod update.

The problem is that after executing any of these two commands. A process called git-remote-http in monitor activity shows that something is being downloaded. This has been an existing issue with pods and an issue has opened on github. I've tried a lot of the recommended solutions. I was finally able to install the firebase cocoapod on my project.

Go to

~/.cocoapods/repos

if there is a master file here, you will need to delete it.

You can do something like

sudo rm -R -i yourmasterdirectory 

do pwd ... you should still be in ~/.cocoapods/repos

if the above did not work try

pod repo remove master

Once you have done this run

git clone https://github.com/CocoaPods/Specs.git master

the next thing you need to do is to is run git fetch --depth=2147483647 - this will convert your local repository of Podspecs to be a full clone as noted here:

pod install and pod update should work fast as expected.

Solution 10 - Ios

To execute it, you must pay attention in your Internet connection... if it fails for a sec, the command won't continue, but terminal won't tell you what's happening. If the command fails, continue trying... worked for me! I've used that command!

$ git clone https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/master

Solution 11 - Ios

--VMWare Workstation--virtualizedMac--NetworkSetting--Problem

After like 100 tries I got it to work! I have tried nearly everything described here but nothing solved the problem. It randomly stopped by cloning into master between 0% and 97%. In Activity Monitor I saw the network traffic has stopped.

Finally I have changed the network setting from NAT to BRIDGE. This was the solution!

Solution 12 - Ios

Just setup the master repo, was excited to see that we have a download progress, see screenshot ;)

CocoaPods release 1.2.0 (Jan 28) fixes this issue, thanks to all contributors and Danielle Tomlinson for this release.


enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionsanjayView Question on Stackoverflow
Solution 1 - IosManuel M.View Answer on Stackoverflow
Solution 2 - IosCœurView Answer on Stackoverflow
Solution 3 - IosshehanrgView Answer on Stackoverflow
Solution 4 - IosMusadaq RaseesView Answer on Stackoverflow
Solution 5 - IosSachin NikumbhView Answer on Stackoverflow
Solution 6 - IosDaniel ShinView Answer on Stackoverflow
Solution 7 - IosPeiweiChenView Answer on Stackoverflow
Solution 8 - IosJayprakash DubeyView Answer on Stackoverflow
Solution 9 - IosRonaldoh1View Answer on Stackoverflow
Solution 10 - IosGabriel RigolonView Answer on Stackoverflow
Solution 11 - IosNoWayView Answer on Stackoverflow
Solution 12 - IosAamirRView Answer on Stackoverflow