安装CocoaPods:
$sudo gem install cocoapods
若果下载迟缓甚至无法下载替换下载源为淘宝提供https://ruby.taobao.org
$ gem sources --add https://ruby.taobao.org/ --remove https://rubygems.org/ $ gem sources -l *** CURRENT SOURCES *** https://ruby.taobao.org
用search命令搜索库名
$pod search AFNetworking
在工程目录下创建podfile文件
$ touch Podfile
编辑功能依赖库
$vi podfile
pod ‘AFNetworking‘, ‘~> 2.3.1‘
安装依赖库
$pod install
去掉install和update命令之前的更新操作
pod install --verbose --no-repo-update
pod update --verbose --no-repo-update