CocoaPods的安装流程及简单实用

2016-11-15  本文已影响22人  GeekPwn_S

一、CocoaPods的安装

1.移除现有Ruby默认源(ruby是一种脚本编辑语言,CocoaPods的使用集于这种语言)

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

/* sudo表示提升用户权限,这一步可以不需要此命令*/

2.使用新的源

$gem sources --a https://ruby.taobao.org/

3.验证新源是否替换成功

$gem sources -l

4.安装CocoaPods

(1) $sudo gem install cocoapods备注:苹果系统升级OS X EL Capitan后改为$sudo gem install -n /usr/local/bin cocoapods

(2) $pod setup

注:[!] /usr/bin/git clone https://github.com/CocoaPods/Specs.git master --depth=1

xcrun: error: active developer path ("/Volumes/Xcode/Xcode.app/Contents/Developer") does not exist,use `xcode-select --switch path/to/Xcode.app` to specify the Xcode that you wish to use for commandline developer tools (or see `man xcode-select`)

[!] /usr/bin/git clone https://github.com/CocoaPods/Specs.git master --depth=1

Cloning into 'master'...

error: RPC failed; result=56, HTTP code = 200

fatal: The remote end hung up unexpectedly

fatal: early EOF

fatal: index-pack failed

出现这两种错误,输入命令“sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer”可解决

————到这里,CocoaPods安装完成————

5.更新gem//可以不用更新

$sudo gem update --system


二、cocoapods的使用

1.新建工程,并在终端用cd指令到文件夹内

$pod search第三方

2.新建文件vim “Podfile”,

$vim Podfile

写入以下内容并保存小提示:(终端vim文件按i可编辑,esc退出编辑,:wq可保存退出)

platform:ios, '6.0'

pod 'AFNetworking', '~>3.0.4'<-------第三方

3.导入第三方库

$pod install

上一篇下一篇

猜你喜欢

热点阅读