Cocoapods的安装步骤
1. ctrl + 空格: 开启iTerm2
2. gem sources -l : 查看Ruby源
3. gem sources --remove https://rubygems.org/ :移除默认Ruby源
4. gem sources -a https://ruby.taobao.org/ :使用新的源
5. gem sources -l : 验证源是否替换成功
6. curl -L get.rvm.io | bash -s stable : 安装rvm
7. rvm -v : 查看是否安装成功
8.获取Homebrew :/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
8. ruby -v : 查看 ruby 版本
9. 显示隐藏文件:defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder
10. 打开Finder -> cmd+shift+G -> ~/.rvm -> archives
11. 删除archives文件夹下的低版本Ruby,添加2.3.0版本的ruby压缩包
12. rvm install ruby 2.3.0 :安装高版本的Ruby
13. sudo gem install cocoapods
14. 打开Finder -> cmd+shift+G -> ~/.cocoapods
15. 删除cocoapods下的repos文件夹, 添加准备好的repos
16. pod setup
Cocoapods的使用
1. pod init 生成Podfile文件
2. open Podfile
3. 在Podfile文件中添加第三方库,到GitHub官网查看第三方库的Readme.md文件中的书写格式 pod ‘AFNetworking’ ‘~> 3.0’
4. pod install
5.pod update --verbose --no-repo-update
网友评论