Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pod setup failed

Tags:

cocoapods

When I run pod setup, I get this error:

LeodeMacBook-Pro:repos Leo$ pod setup
Setting up CocoaPods master repo
[!] /usr/local/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

Maybe, because my bad networking?

like image 911
Leo Avatar asked Sep 27 '16 04:09

Leo


People also ask

How to get the pod error details?

In most cases, you can get the pod error details by describing the pod event. With the error message, you can figure out the cause of pod failure and rectify it. How to Troubleshoot Pod Errors? How to Troubleshoot Pod Errors? The first step in troubleshooting a pod is getting the status of the pods.

What do I do if my HomePod setup assistant fails?

"Setup Failed" with an error code. For example, -6722 Try the steps below, then try to set up HomePod after each step. If you don't see the HomePod Setup Assistant, put your iOS or iPadOS device to sleep, then wake it.

Why is my Kubernetes pod not working?

If kubernetes is not able to pull the image mentioned in the manifest. Indicates a wrong image name. Unable to inspect the image. The specified container is either not present or not managed by the kubelet, within the declared pod. Container initialization failed. Pod’s containers don’t start successfully due to misconfiguration.

Why is my HomePod not connecting to my phone?

HomePod requires Bluetooth connection to communicate with your iOS device. Trying turning it OFF/On Bluetooth. Open Settings app on your iOS device → Bluetooth → turn off the switch. Now, wait for a couple of seconds and turn it back on. Now, try setting up the speaker.


1 Answers

Do this:

sudo rm -rf ~/.cocoapods/repos/master

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

Than run pod setup again.

like image 192
Leo Avatar answered Dec 25 '22 11:12

Leo