更换源
gem sources --remove https://rubygems.org/
gem sources -a http://ruby.taobao.org/
gem sources -l
更新升级gem(以后出现问题,尝试这个)
sudo gem update --system
安装
sudo gem install cocoapods
更换repo镜像为国内服务器
pod repo remove master
pod repo add master https://gitcafe.com/akuandev/Specs.git
pod repo add master http://git.oschina.net/akuandev/Specs.git
pod repo update
- (注意:但是执行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
初始化第三方库信息(以后出现问题,尝试这个)
pod setup
以后更新第三方库信息
pod repo update
搜索
pod search
新建Podfile
vim Podfile
- 输入i:进入编辑状态
- 输入dd删除当前行
- 输入完信息依次esc->:->wq
捷信Podfile,安装第三方框架
pod install
解析Podfile,升级第三方框架
pod update
以后使用CocoaPods过程中出现了莫名其妙的问题
sudo gem update --system
sudo gem install cocoapods
pod setup
镜像备份网址
网友评论