CocoaPods 的安装

安装:

# 删除源(这个系统自带的不好用)

$ sudo gem sources -r https://rubygems.org/

# 添加源(之前淘宝的镜像 https://gems.ruby-china.com/  不使用了,记住要用https)

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

# 查看是否使用的是淘宝镜像

$ gem sources -l

# 安装

$ sudo gem install cocoapods

# 安装成功之后,查看是否是最后版本(目前最新版本是0.39.0)

$ pod --version

安装过程常见的问题

[!] Pod::Executable clone

'https://github.com/CocoaPods/Specs.git' master

xcrun: error: active developer path

("/Users/xiakejie/工具/Xcode 2.app/Contents/Developer")

does not exist, use xcode-select to change

解决上面这个问题, 使用这个命令: sudo xcode-select -switch

/Applications/Xcode.app/Contents/Developer

使用

# 搜索,先搜索一下,你需要用到的框架

$ pod search AFNetworking

# 生成方式  只创建Podfile(记住要到工程目录下,没有后缀)

$ touch Podfile

# 安装

$ pod install

# 升级 (推荐用update,其中update就包含了install)

$ pod update

git 操作

# 将修改添加到暂存区

$ git add .

# 提交修改

$ git commit -m "添加 AFN框架程序"

你可能感兴趣的:(CocoaPods 的安装)