Objective-C App开发基础之pod install无限阻塞在Setting up CocoaPods master repo的情况

$ pod install 只会按照Podfile的要求来请求类库,在本地,输入$ pod install  ,出现一直阻塞在
Setting up CocoaPods master repo

的情况。

在 ~/.cocoapods目录下,用du sh * 查看repos的大小,一直停留存在56k,然后过一段时间,大小变为0B,同时,pod install指令终止,并出现

[!] Unable to add a source with url `https://github.com/CocoaPods/Specs.git` named `master`.
You can try adding it manually in `~/.cocoapods/repos` or via `pod repo add`.

呵呵,查了各种方法都不能解决问题,最后只用暴力了。

方法如下:

1.用git clone直接下载

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

此时对应workspaces文件夹中出现一个master文件夹

2.把master文件夹移动到~/.cocoapods/repos文件夹下

$ mv master ~/.cocoapods/repos

3.最后执行pod install 指令

你可能感兴趣的:(objective-c,app)