cocoa pods Installation

参考: http://guides.cocoapods.org/using/getting-started.html#installation
CocoaPods is built with Ruby and it will be installable with the default Ruby available on OS X. You can use a Ruby Version manager, however we recommend that you use the standard Ruby available on OS X unless you know what you‘re doing.

Using the default Ruby install will require you to use sudo when installing gems. (This is only an issue for the duration of the gem installation, though.)

$ sudo gem install cocoapods
If you encounter any problems during installation, please visit this guide.

<Sudo-less installation

If you do not want to grant RubyGems admin privileges for this process, you can tell RubyGems to install into your user directory by passing either the --user-install flag to gem install or by configuring the RubyGems environment. The latter is in our opinion the best solution. To do this, create or edit the .profile file in your home directory and add or amend it to include these lines:

export GEM_HOME=$HOME/.gem
export PATH=$GEM_HOME/bin:$PATH
Note that if you choose to use the --user-install option, you will still have to configure your .profile file to set the PATH or use the command prepended by the full path. You can find out where a gem is installed with gem which cocoapods. E.g.

$ gem install cocoapods --user-install  用sudo方式安装在Mac OSX 10.11上报错
$ gem which cocoapods
/Users/eloy/.gem/ruby/2.0.0/gems/cocoapods-0.29.0/lib/cocoapods.rb
$ /Users/eloy/.gem/ruby/2.0.0/bin/pod install
<Updating CocoaPods

To update CocoaPods you simply install the gem again
$ [sudo] gem install cocoapods
Or for a pre-release version
$ [sudo] gem install cocoapods --pre    gem install cocoapods --user-install --pre

时间: 2024-10-10 16:05:22

cocoa pods Installation的相关文章

cocoa pods 安装 转载

1.打开终端 终端输入  $ruby -v  查看ruby的版本 打印代码: ruby 2.0.0p648 (2015-12-16 revision 53162) [universal.x86_64-darwin15] 2. 更换ruby镜像 终端输入如下命令(把Ruby镜像指向taobao,避免被墙,你懂得) a.移除现有 Ruby 默认源输入以下指令 $gem sources --remove https://rubygems.org/ b.使用新的源输入以下指令  $gem sources

cocoa pods

cocoa pods CocoaPods 是 iOS 最常用最有名的类库管理工具 作为 iOS 程序员,掌握 CocoaPods 的使用是必不可少的基本技能 pod 命令汇总 # 创建默认的 Podfile $ pod init # 第一次使用安装框架 $ pod install # 安装框架,不更新本地索引,速度快 $ pod install --no-repo-update # 今后升级.添加.删除框架,或者框架不好用 $ pod update # 更新框架,不更新本地索引,速度快 $ po

iOS开发之Cocoa Pods

Cocoa Pods CocoaPods是一个负责管理iOS项目中第三方开源代码的工具 Cocoa使用Ruby开发,其源码在Github上开源 https://github.com/CocoaPods/CocoaPods 可以节省设置和更新第三方开源库的时间,提高工作效率 提示: 使用Ruby开发的优秀的开源组件包,大多由RubyGems管理,如ROR RubyGems,简称gems.是一个用于对 Ruby组件进行打包的Ruby打包系统.它提供一个分发Ruby程序和库的标准格式,还提供一个管理程

Cocoa pods的安装和使用

现在网上关于cocoapods的安装使用资料有很多,有些方法能用,有些是用不了的,别问为什么,因为我就是从坑里走出来的.在此自己整理了一些方法: 一般需要先升级Ruby环境: 第一步:安装rvm $ curl -L get.rvm.io | bash -s stable $ source ~/.rvm/scripts/rvm 等待终端加载完毕,后输入:rvm -v 如果能显示版本好则安装成功了. 第二步:安装ruby 列出ruby可安装的版本信息 rvm list known 安装一个ruby版

IOS创建开源库步骤,提交cocoa pods官网,别人可以使用

1.打开终端进入某个目录执行  pod lib create BMBlinkButton,按命令步骤执行. 2.目录结构 3.修改BMBlinkButton.podspec文件 4.进入Example,pod更新, pod install --verbose --no-repo-update,更新完后打开BMBlinkButton.xcworkspace,工程目录结构5.检查BMBlinkButton.podspec是否合法 在BMBlinkButton.podspec所在目录执行 pod li

cocoa pods中Podfile的写法

platform :ios, '7.0'inhibit_all_warnings!xcodeproj 'Demo.xcodeproj'target :Demo1 do   pod 'MBProgressHUD', '~> 0.9.1'   pod 'AFNetworking', '~> 2.5.4'   pod 'MJRefresh', '~> 2.3.2'end target :Demo2 do   pod 'MBProgressHUD', '~> 0.9.1'   pod 'A

安装cocoa pods 出现Setting up CocoaPods master repo 的问题

我为这个问题耗费了一个下午了,终于找到合适的解决的办法啦.链接如下http://www.cocoachina.com/bbs/read.php?tid=193398&page=1

cocoa pods自己的笔记

备注:这里只是个人的观点,有的地方也是copy,多多指教,个人笔记,有侵犯你们版权的地方还望海涵!!! 卡主不动 安装流程:http://www.tuicool.com/articles/qaMfuy http://www.jianshu.com/p/6e5c0f78200a pod install --verbose --no-repo-update pod update --verbose --no-repo-update 出现Setting up CocoaPods master repo

安装rvm以及cocoa pods的使用

一 安装rvm和cocoapods 1,打开终端输入 $ curl -L get.rvm.io | bash -s stable 2,指定源 $ source ~/.rvm/scripts/rvm 3,打印出所有版本 rvm list known 4,安装其中一个版本 rvm install 2.0.0 5,提示输入安装路径 按 回车键 确认 6,开始安装cocoapods  输入$sudo gem install cocoapods 二 使用cocoapods a  新建一个项目,名字PodT