1、替换gem源
- 虽然Mac自带Ruby但是安装cocoapods需要gem,gem是一个管理Ruby库和程序的标准包,它通过RubyGem源来查找、安装、升级和卸载软件包。因为gem默认的服务器被墙,因此在安装之前需要将gem服务器替换成国内的地址。
$ gem sources --remove https://rubygems.org/ //移除
$ gem sources --add https://ruby.taobao.org/ //替换
- 检查替换结果
$ gem sources -l
- (最后建议升级一下gem:$ sudo gem update --system)
2、安装cocoapods
- gem源替换好之后就可以安装cocoapods了
$sudo gem install -n /usr/local/bin cocoapods $ pod
setup
- 不出意外的话setup这一步会很慢或者无限卡 Setting up CocoaPods master repo,这是因为要在github下载代码,我这一步一直有问题,查询网上都说要将specs仓库镜像换成gitcafe上的镜像或者是 oschina 上的镜像即:
$ pod repo remove master $ pod repo add master
https://git.coding.net/CocoaPods/Specs.git //或者 $ pod repo add master
https://git.oschina.net/akuandev/Specs.git
- 但是执行pod repo remove master之后老是提示[!] repo master does not exist虽后执行 pod repo add master https://git.coding.net/CocoaPods/Specs.git之后又会提示[!] To setup the master specs repo, please run pod setup. 然后就无限卡死这两步,不知道是因为cocoapods版本的问题还是网络的问题,最后直接手动将代码git到本地得以解决问题:
$ git clone https://git.coding.net/CocoaPods/Specs.git ~/.cocoapods/repos/master
-
git完成之后如下:
- 然后执行
$ pod repo update $ pod repo
-
结果如下:
- 至此cocoapods安装完毕
3、cocoapods的使用
- 首先cd命令到项目根目录下,生成Podefile文件
$pod init //会生成模板的Podfile文件
- 指定依赖,例如
target 'B01-opencvTest' do pod 'SVProgressHUD' end
- 保存文件后执行
$pod install --verbose --no-repo-update
- 提示Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.,打开工作空间.xcworkspace文件就可以开始愉快的编程了。
网友评论