- 使用pod install进行安装时出现如下错误:
$ pod install
Analyzing dependencies
[!] Unable to find a specification for `**`
- 解决方案:
- 在终端执行下列命令:
1、pod repo remove master
2、pod setup
3、pod install
Or:
1、 sudo rm -fr ~/.cocoapods/repos/master
2、pod setup
3、pod install
注意:
执行第二步 pod setup
命令是记得要把VPN关掉,不知道为什么?T_T
参照:http://stackoverflow.com/questions/25913733/unable-to-find-a-specification-in-cocoapods
网友评论