Updating local specs repositories卡住不动

在家里更新第三方库发现的问题,网上查了才知道原因:

 无论是执行pod install还是pod update都卡在了Analyzing dependencies 或者 Updating local specs repositories不动

解决: 原因在于当执行以上两个命令的时候会升级CocoaPods的spec仓库,加一个参数可以省略这一步,然后速度就会提升不少。加参数的命令如下:

pod install--verbose--no-repo-update

pod update--verbose--no-repo-update


Updating local specs repositories卡住不动_第1张图片
可以正常使用啦


另外一个问题是:

[!] Your Podfile has had smart quotes sanitised. To avoid issues in the future, you should not use TextEdit for editing it. If you are not using TextEdit, you should turn off smart quotes in your editor of choice.


Updating local specs repositories卡住不动_第2张图片
这里提示有问题

这个问题一般都是语法错误,像我,找了N久才找到这个引号错了,建议大家使用 vim 编辑的时候注意一下,当然使用xcode也是可以的


Updating local specs repositories卡住不动_第3张图片
找到错误在哪了

你可能感兴趣的:(Updating local specs repositories卡住不动)