本文主要是介绍苹果系统升级 为 OS X EL Capitan 后安装 cocoapods,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.移除现有Ruby默认源
$gem sources --remove https://rubygems.org/
2.使用新的源
$gem sources -a https://ruby.taobao.org/
3.验证新源是否替换成功
$gem sources -l
4.安装CocoaPods
$sudo gem install -n /usr/local/bin cocoapods
$pod setup
遇到的问题:
1.Error fetching http://ruby.taobao.org/:
bad response Not Found 404 (http://ruby.taobao.org/specs.4.8.gz)
将gem sources -a http://ruby.taobao.org/ 改为gem sources -a https://ruby.taobao.org/
2.ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions for the /Library/Ruby/Gems/2.0.0 directory.
权限问题:使用sudo gem install -n /usr/local/bin cocoapods
新版cocoa pods 使用:touch Podfile; vim Podfile
(新建并编辑 Podfile 文件)内容如下: platform:ios,'版本号' target '自己的项目名称' do pod '需要添加的库'pod '需要添加的库'(库的数量自己定) end
编辑完成后 esc :wq保存退出 pod install 等待安装
//报错
Pods written in Swift can only be integrated as frameworks; add `use_frameworks!` to your Podfile or target to opt into using it. The Swift Pod being used is: Alamofire
//解决方法 在platform:iOS,'8.0' 下一行添加use_frameworks! 即可解决问题
这篇关于苹果系统升级 为 OS X EL Capitan 后安装 cocoapods的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!