2019最新cocoaPods安装

1、安装Xcode

App Store下载即可

2、安装Homebrew
手动安装 https://blog.csdn.net/icfhtg/article/details/107254950

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

3、安装RVM

curl -sSL https://get.rvm.io | bash -s stable

4、安装ruby

4.1 列出已知的ruby版本

$ rvm list known

如果出现
command not found: rvm
可能是因为ram的shell配置没有加载,在终端输入:

$ source ~/.rvm/scripts/rvm

再输入

$ type rvm | head -n 1

4.2 可以选择现有的rvm版本来进行安装(以下就是是3.0.0安装步骤)

4.2.1 安装

$ rvm install 3.0.0

4.2.2 检测是否安装成功

$ ruby -v 

4.3 更换Ruby镜像

4.3.1 移除

$ gem sources --remove https://rubygems.org/

4.3.2 添加(https://ruby.taobao.org/ 源已停止维护)

$ gem sources -a https://gems.ruby-china.com/

4.3.2 是否更换成功

$ gem sources -l

5、安装cocopods

5.1 安装cocopods

$ sudo gem install cocoapods

5.2 配置pod(会比较慢,请耐心等待)

$ pod setup 
//使用这句代替执行效果更佳
$ git clone https://gitee.com/mirrors/CocoaPods-Specs.git ~/.cocoapods/repos/master
// 或者使用清华大学的(听着就皮哄哄的)
$ git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git ~/.cocoapods/repos/master
  1. 更新 gem

5.1 更新gem

$ sudo gem update --system

5.1 查看gem版本

$ pod --version

5.3 测试

$ pod search AFNetworking

5.4 错误
[!] Unable to find a pod with name, author, summary, or description matching AFNetworking
将缓存删掉重新搜索即可

rm ~/Library/Caches/CocoaPods/search_index.json

你可能感兴趣的:(2019最新cocoaPods安装)