cocoapods - #39;pod install#39; takes forever(cocoapods - pod install 需要永远)
问题描述
我尝试使用 pod install
命令更新现有的 pod,但它需要很长时间才能运行.
I was trying to update the existing pods with the pod install
command, but it takes forever to run.
详细模式显示它被卡在下一行(永远)
The verbose mode shows it was stuck at the following line (forever)
更新规范库master
$/usr/bin/git pull --no-rebase --no-commit
$ /usr/bin/git pull --no-rebase --no-commit
卡住后没有网络活动.
推荐答案
我遇到了同样的问题,我通过运行给出的以下命令解决了它 这里
I ran into the same problem, and I solved it by running the following commands which is given here
pod repo remove master
pod setup
pod install
这篇关于cocoapods - 'pod install' 需要永远的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!