美文网首页UI基础Mac工具整理iOS Developer
iOS - rvm、Ruby环境CocoaPods安装使用及相

iOS - rvm、Ruby环境CocoaPods安装使用及相

作者: 麦穗0615 | 来源:发表于2017-05-29 13:29 被阅读1132次

    前言:

    CocoaPods 作为目前库依赖管理的工具,是非常好用的一把利器。我们有了它,再也无需拖 第三方库以及第三方库所依赖的framework 仅仅只需要通过终端,输入一些指令即可完成这些操作;而且涉及到第三方库的更新升级也可以通过 CocoaPods 进行手动管理更新。

    一、基本知识简介

    • 1、官网及相关链接
    - **Rvm 官网** : [https://www.rvm.io/](https://www.rvm.io/)
    

    Ruby 官网https://rubygems.org/
    CocoaPods 官网https://cocoapods.org/
    Rvm 安装指南:https://rvm.io/rvm/install
    Homebrew 官网:http://brew.sh/index_zh-cn.html
    ruby 镜像 - taobao:https://ruby.taobao.org/
    ruby 镜像 - china:https://gems.ruby-china.org/

    • 2、Homebrew 介绍
      • Homebrew 是一个软件包管理器,用于在mac上安装一些os x上没有的UNiX工具;类似于360软件管理器。
    • 3、Rvm 介绍
    • Rvm 全称 Ruby Version Manager ,是安装和管理 ruby 的一种工具。
    • 摘录:RVM is a command-line tool which allows you to easily install, manage, and work with multiple ruby environments from interpreters to sets of gems.
    • 4、Ruby 介绍
      • Ruby 是一种面向对象的脚本语言,简单易用,功能强大。能跨平台和可移植性好等等。其实就是种脚本语言。
      • Ruby 的软件源使用的是亚马逊的云服务,国内网络环境下载时可能会出现各种不稳定和超时,所以自带的需要翻墙。
        - 可以将 官方 ruby 源 替换成国内 淘宝 ruby(https://ruby.taobao.org/
        - 或者是由 China ruby 源(https://gems.ruby-china.org/ )。
        据消息了解,2016.06 淘宝源 暂停维护了,建议使用 China ruby 源。
    • 5、CocoaPods 介绍
    • CocoaPods 是 iOS 最常用的第三方类库管理工具,绝大部分有名的开源类库都支持 CocoaPods。
    • CocoaPods 是用 ruby 实现的,要想使用它首先需要有 ruby 的环境。幸运的是OS X系统默认已经可以运行 ruby 了。但是有时候 ruby 版本过低是无法正常支持 CocoaPods 的使用,所以需要先安装更新升级 rvm 和 ruby。

    二、CocoaPods 安装使用

    如果没有意外情况,按照下面走就没问题了

    • 1、检查安装 rvm 环境( 正常情况可直接略过此步骤 )
      • 检查当前 rvm 环境( 此处检查是否存在 rvm 环境 ):
        $ rvm -v
         `输出结果:( 存在 rvm 环境)`
          muxuguixiandeMacBook-Pro:~ jijiucheng$ rvm -v
          rvm 1.29.1 (latest) by Wayne E. Seguin <wayneeseguin@gmail.com>, Michal Papis <mpapis@gmail.com> [https://rvm.io/]
    
         `输出结果:(不存在 rvm 环境)`
          muxuguixiandeMacBook-Pro:~ jijiucheng$ rvm -v
          -bash: rvm: command not found
    
       ** 情况一:如果不存在 rvm 环境,先安装  配置 rvm 环境**;
          ① 期间可能会问你 `sudo管理员` 密码,以及自动通过 `homebrew` 安装依赖包;
          等待一段时间后就可以成功安装好 `rvm`。
    
         $ curl -L https://get.rvm.io | bash -s stable
    
          输出结果:(下载安装)(显示的 `` 代表一行空格)
          muxuguixiandeMacBook-Pro:~ jijiucheng$ curl -L https://get.rvm.io | bash -s stable
          % Total    % Received % Xferd  Average Speed   Time    Time     Time                
          Current Dload  Upload   Total   Spent    Left  Speed
          100   184  100   184    0     0     93      0  0:00:01  0:00:01 --:--:--    93
          100 22865  100 22865    0     0   8964      0  0:00:02  0:00:02 --:--:--  710k
          Downloading https://github.com/rvm/rvm/archive/1.27.0.tar.gz
          Downloading     
          https://github.com/rvm/rvm/releases/download/1.27.0/1.27.0.tar.gz.asc
          Found PGP signature at:   
          'https://github.com/rvm/rvm/releases/download/1.27.0/1.27.0.tar.gz.asc',
           but no GPG software exists to validate it, skipping.
            ``
          `Installing RVM to /Users/smalllufeinj/.rvm/`
            Adding rvm PATH line to /Users/smalllufeinj/.profile   
            /Users/smalllufeinj/.mkshrc /Users/smalllufeinj/.bashrc   
            /Users/smalllufeinj/.zshrc.
            Adding rvm loading line to /Users/smalllufeinj/.profile     
            /Users/smalllufeinj/.bash_profile /Users/smalllufeinj/.zlogin.
           `Installation of RVM in /Users/smalllufeinj/.rvm/ is almost complete:`
            ``
           .* To start using RVM you need to run `source     
            /Users/smalllufeinj/.rvm/scripts/rvm`
            in all your open shell windows, in rare cases you need to reopen all shell windows.
            ``
            # muxuguixian,
            #
            #   Thank you for using RVM!
            #   We sincerely hope that RVM helps to make your life easier and more enjoyable!!!
            #
            # ~Wayne, Michal & team.
            ``
            In case of problems: https://rvm.io/help and https://twitter.com/rvm_io
    
    下载安装 rvm 环境.
        ② 然后,载入 RVM 环境(新开 Termal 就不用这么做了,会自动重新载入的)。
    
        $ source ~/.rvm/scripts/rvm
    
        输出结果:(^_^)(什么都没有输出)
        muxuguixiandeMacBook-Pro:~ jijiucheng$ source ~/.rvm/scripts/rvm
    
        ③ 再次检查 rvm 是否安装正确。
    
        $ rvm -v
    
         `输出结果:( 存在 rvm 环境)`
          muxuguixiandeMacBook-Pro:~ jijiucheng$ rvm -v
          rvm 1.29.0 (latest) by Wayne E. Seguin <wayneeseguin@gmail.com>,     
          Michal Papis <mpapis@gmail.com> [https://rvm.io/]
    

    情况二:如果存在 rvm 环境,用 rvm 安装 ruby 环境;

    • 当 ruby 版本低于 2.2.2 时,安装 CocoaPods 会报错;为防止 ruby 版本过低,建议先升级 ruby 环境,建议升级到 2.3.0 版本以上。【可以通过 $ ruby -v 指令检查当前 ruby 版本】

       ① 查询已知的 ruby 环境。
      
       $ rvm list known
      
       输出结果:(显示的 `` 代表一行空格)
       muxuguixiandeMacBook-Pro:~ jijiucheng$ rvm list known
       # MRI Rubies
       [ruby-]1.8.6[-p420]
       [ruby-]1.8.7[-head] # security released on head
       [ruby-]1.9.1[-p431]
       [ruby-]1.9.2[-p330]
       [ruby-]1.9.3[-p551]
       [ruby-]2.0.0[-p648]
       [ruby-]2.1[.8]
       [ruby-]2.2[.4]
       [ruby-]2.3[.0]
       [ruby-]2.2-head
       ruby-head
         ``
       # for forks use: rvm install ruby-head-<name> --url       
       https://github.com/github/ruby.git --branch 2.2
       ``
       # JRuby
       jruby-1.6[.8]
       jruby-1.7[.23]
       jruby[-9.0.5.0]
       jruby-head
       ``
       # Rubinius
       rbx-1[.4.3]
       rbx-2.3[.0]
       rbx-2.4[.1]
       rbx[-2.5.8]
       rbx-head
       ``
       # Opal
       opal
       ``
       # Minimalistic ruby implementation - ISO 30170:2012
       mruby[-head]
       ``
       # Ruby Enterprise Edition
       ree-1.8.6
       ree[-1.8.7][-2012.02]
       ``
       # GoRuby
       goruby
       ``
       # Topaz
       topaz
       ``
       # MagLev
       maglev[-head]
       maglev-1.0.0
       ``
       # Mac OS X Snow Leopard Or Newer
       macruby-0.10
       macruby-0.11
       macruby[-0.12]
       macruby-nightly
       macruby-head
       ``
       # IronRuby
       ironruby[-1.1.3]
       ironruby-head
      
    查询已知的 ruby 环境

    ② 指定 ruby 版本进行更新( 此处按照 ruby 2.4.0 版本进行更新 )。

        $ rvm install 2.4.0
    
         输出结果:( 此处因为终端输出的字符过多,所以此处用截图方式 )
    
    ![指定 ruby 版本进行更新](http:https://img.haomeiwen.com/i2156697/6d0fd02a9e44853b.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
    
        ③ 第二步需要一段时间等待,完成后此时 rvm 环境就配置好了;Ruby Gems 就安装好了。
    
        ④ 补充相关指令:
              查询已安装的 ruby:
                               $ rvm list
              卸载一个已安装版本:
                                $ rvm remove 1.9.2
    
    • 2、检查更新 ruby 版本环境(正常情况下从此步骤开始)
      • CocoaPods 是用** gem ** **ruby **实现的,要想使用它首先需要有 gem ruby 的环境。且 MAC 的 OS X系统默认已经可以运行 ruby 。
      • 此处建议 gem ruby 包环境升级到 ** 2.6.x ** 以上。

        **检查 gem ruby 版本号:**
        
              $ sudo gem -v
    
              检查结果:( 默认情况下版本应该较低,建议升级到 )
              muxuguixiandeMacBook-Pro:local jijiucheng$ gem -v
              2.5.1
    
        **更新 gem ruby 版本号:**
    
              $ gem update --system
    
              更新成功:( 实际打印可能与此不同,但是成功了就会显示 Successfully )
              muxuguixiandeMacBook-Pro:local jijiucheng$ gem update --system
              Updating rubygems-update
              Fetching: rubygems-update-2.6.7.gem (100%)
              Successfully installed rubygems-update-2.6.7
    
              此种提示:( 表示已经是最新的 gem ruby 环境 )
              muxuguixiandeMacBook-Pro:~ jijiucheng$ gem update --system
              Latest version currently installed. Aborting.
    

    检查 ruby 源:

              $ gem sources -l
    
              检查结果:( 如果电脑没安装过 CocoaPods,此时应该是默认 ruby 源 )
              muxuguixiandeMacBook-Pro:~ jijiucheng$ gem sources -l
              *** CURRENT SOURCES ***
              https://rubygems.org/
    

    移除 ruby 源:
    $ gem sources --remove https://rubygems.org/

               移除结果:
                muxuguixiandeMacBook-Pro:local jijiucheng$ gem sources --remove https://rubygems.org/
                https://rubygems.org/ removed from sources
    

    替换添加国内镜像源** ruby-china** 源,因为上面已经提到国内镜像源 taobao 源 已经停止维护了,所以此处替换的是 ruby-china 源,且尽量确保只有一个 ruby-china 源。
    也可以,可以将 官方 ruby 源 替换成国内 淘宝 ruby(https://ruby.taobao.org/

          $ gem sources --add https://gems.ruby-china.org
    
          替换结果:
          muxuguixiandeMacBook-Pro:local jijiucheng$ gem sources --add  https://gems.ruby-china.org
          https://gems.ruby-china.org added to sources
    
          再次检查此时的 ruby 源:( 已经变成了 ruby-china 源 )
          muxuguixiandeMacBook-Pro:local jijiucheng$ gem sources -l
          *** CURRENT SOURCES ***
          https://gems.ruby-china.org
    
    • 3、安装 CocoaPods
      • 安装 CocoaPods( sudo 表示管理员执行指令 )(此处需要输入一次密码
        $ sudo gem install cocoapods

          `注意点:<------------------------------> 此处有个注意点`
           由于 OS X 系统的不同,此处的指令也是有些变化:
           OS X 10.11之前系统的安装 CocoaPods 指令: $ sudo gem install cocoapods
           OS X 10.11以后系统的安装 CocoaPods 指令: $ sudo gem install -n /usr/local/bin cocoa pods
           OS X 10.12 $ sudo gem install -n /usr/local/bin cocoa pods
        
        安装结果:(正常情况打印没有这么多,此处是因为解决报错时,同时打印了这么多)
        muxuguixiandeMacBook-Pro:local jijiucheng$ sudo gem install cocoa pods
        Password:   <----------------------------------->  // 此处需要输入一次密码 
        Fetching: ffi-1.9.14.gem (100%)
        Building native extensions.  This could take a while...
        Successfully installed ffi-1.9.14
        Fetching: thread_safe-0.3.5.gem (100%)
        Successfully installed thread_safe-0.3.5
        Fetching: tzinfo-1.2.2.gem (100%)
        Successfully installed tzinfo-1.2.2
        Fetching: i18n-0.7.0.gem (100%)
        Successfully installed i18n-0.7.0
        Fetching: concurrent-ruby-1.0.2.gem (100%)
        Successfully installed concurrent-ruby-1.0.2
        Fetching: activesupport-5.0.0.1.gem (100%)
        Successfully installed activesupport-5.0.0.1
        Fetching: cocoa-0.1.6.gem (100%)
        Successfully installed cocoa-0.1.6
        Parsing documentation for ffi-1.9.14
        Installing ri documentation for ffi-1.9.14
        Parsing documentation for thread_safe-0.3.5
        Installing ri documentation for thread_safe-0.3.5
        Parsing documentation for tzinfo-1.2.2
        Installing ri documentation for tzinfo-1.2.2
        Parsing documentation for i18n-0.7.0
        Installing ri documentation for i18n-0.7.0
        Parsing documentation for concurrent-ruby-1.0.2
        Installing ri documentation for concurrent-ruby-1.0.2
        Parsing documentation for activesupport-5.0.0.1
        Installing ri documentation for activesupport-5.0.0.1
        Parsing documentation for cocoa-0.1.6
        Installing ri documentation for cocoa-0.1.6
        Done installing documentation for ffi, thread_safe, tzinfo, i18n, concurrent-ruby, activesupport, cocoa after 34 seconds
        Fetching: pods-0.0.1.gem (100%)
        Successfully installed pods-0.0.1
        Parsing documentation for pods-0.0.1
        Installing ri documentation for pods-0.0.1
        Done installing documentation for pods after 0 seconds
        8 gems installed
        <------------------ 此处有 gems installed 标志着安装 CocoaPods 成功 ------------------>
        
    安装 CocoaPods
    • 正常情况下此处会出现很大的坑,经常会出现各种报错问题,大多数是为 ruby 环境过低没有更新升级,或者是牵扯到 rvm 管理器环境的问题,在后面各种报错问题的解决方案的中会有提到。

    iOS11.2
    ----> 指令:
    ----> $ sudo gem install cocoapods
    ----> 需要密码

      ![$ sudo gem install cocoapods 测试结果](http:https://img.haomeiwen.com/i2156697/594ca477ffb93d88.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
    
    • 4、配置 CocoaPods 环境

      • 4.1 --> cd 到目录文件夹,回车 enter

      • 4.2 --> ls -l 查找是否到了指定目录

      • 4.3 --> pod init进行初始化

      • 4.4 --> open podfile如下所示
        Podfile 配置文件固定语句(如下):
        ```说明:可能有些人看到的固定语句不一样,但是大同小异,基本上都能实现最终效果。`
        --->
        # Uncomment this line to define a global platform for your project
        platform :ios, '8.0'
        target 'CocoaPodsTestDemo' do
        # Uncomment this line if you're using Swift or would like to use dynamic frameworks
        # Pods for CocoaPodsTestDemo
        pod 'AFNetworking', '~>3.1.0'
        pod 'SDWebImage'
        pod 'MBProgressHUD'
        pod 'FMDB'
        pod 'Masonry'
        pod 'MJExtension'
        pod 'MJRefresh'
        # use_frameworks!
        # pod 'ReactiveCocoa'
        end

      • 4.5 --> 按照如上进行填写,设置 com+s保存

      • 4.6 --> pod install -help用来查找命令行,pod的命令行不用记

      • 4.6 -->pod install --no-repo-update即可或pod update

    三、CocoaPods 安装过程中报错问题解决

    说明:此部分所列举的问题均是在执行相关指令时出现的报错

    1、Rvm 环境搭建
    报错一:
      ① Error running 'requirements_osx_brew_update_system ruby-2.3.0',   
        showing last 15 lines of /Users/jijiucheng/.rvm/log/1475769205_ruby-
        2.3.0/update_system.log
      ② curl: (35) Server aborted the SSL handshake
    

    ① 报错指令:
    $ rvm install 2.3.0

     *② 报错信息:*
        Error running 'requirements_osx_brew_update_system ruby-
        2.3.0',showing last 15 lines of /Users/jijiucheng/.rvm/log/1475769205_ruby-
        2.3.0/update_system.log............Requirements installation failed with status: 1.
        curl: (35) Server aborted the SSL handshake
    
    报错信息 1.png 报错信息 2.png

    ③ 报错原因:网络问题,因为需要翻墙,所以网络不稳定;建议选择 VPN,保证线路的稳定性。

    ④ 解决方案( 指令一行一行输入 ):
    $ cd /usr/local

        $ git remote set-url origin git://mirrors.ustc.edu.cn/brew.git
    
        $ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bashrc
    
    解决方案 .png

    ⑤ 方案链接:方案解决链接 -- https://segmentfault.com/q/1010000004276750

    报错二:
    • ** ① Error running '__rvm_make -j 1',showing last 15 lines of /Users/jijiucheng/.rvm/log/1475769349_ruby-2.3.0/make.log**

      ① 报错指令:
      $ rvm install 2.3.0

      ② 报错信息:
      Error running '__rvm_make -j 1',showing last 15 lines of /Users/jijiucheng/.rvm/log/1475769349_ruby-2.3.0/make.log............There has been an error while running make. Halting the installation.

    报错信息 .png

    ③ 报错原因:缺少 Xcode 工具,xcode command line

    ④ 解决方案:
    $ xcode-select --install

    解决方案 .png

    *⑤ 方案链接:
    方案解决链接 1 - http://stackoverflow.com/questions/35228481/error-running-rvm-make-install
    方案解决链接 2 - http://www.th7.cn/Program/Ruby/201609/966343.shtml

    报错三:
    • ① Gemset '' does not exist, 'rvm ruby-2.3.0 do rvm gemset create ' first, or append '--create'.
      ① 报错指令:

          $ rvm install 2.3.0
      
    • ② 报错信息:

          muxuguixiandeMacBook-Pro:local jijiucheng$ rvm install 2.3.0
          Already installed ruby-2.3.0.
          To reinstall use:
      
          rvm reinstall ruby-2.3.0
      
          Gemset '' does not exist, 'rvm ruby-2.3.0 do rvm gemset create ' first,     
          or append '--create'.
      ![报错信息 .png](http:https://img.haomeiwen.com/i2156697/b4c5ebaae686ec66.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
      
    • ③ 报错原因:指令不对,已经存在 ruby-2.3.0 的文件残留,需要重新安装;

    • ④ 解决方案:
      $ rvm reinstall ruby-2.3.0

    解决方案 .png

    2、CocoaPods 安装及使用报错

    报错一

    • ① Setting up CocoaPods master repo

    • ② [!] Unable to add a source with url https://github.com/CocoaPods/Specs.git named master. You can try adding it manually in ~/.cocoapods/repos or via pod repo add

    • ① 报错指令:
      $ pod install

    • ② 报错信息:
      muxuguixiandeMacBook-Pro:NFCustomer jijiucheng$ pod installSetting
      up CocoaPods master repo[!] Unable to add a source with url
      https://github.com/CocoaPods/Specs.git named master.You can try
      adding it manually in ~/.cocoapods/repos or via pod repo add.

      报错信息 .png
    • ③ 报错原因:由于安装了多个Xcode导致路径变了,需要变换路径:
      sudo xcode-select -switch /Applications/Xcode.app
      sudo xcode-select -switch /Applications/Xcode\ 2.app

    • ④ 解决方案:
      $ sudo xcode-select -switch /Applications/Xcode.app

    解决方案

    报错二

    **更新cocoapod的时候会出现 下面错误

    Performing a deep fetch of the master specs repo to improve future performance**

    • 【解决】:
      纠结半天,是因为pod steup的时候创建master这个库,没成功,之后就算移除镜像重新安装的话 默认是从matser库里获取,导致安装不成功。
      解决办法是移除master库,重新创建。
      $ pod repo update --verbose

      $ rm -rf ~/.cocoapods/repos/master
      
      $ pod setup
      
    四、资料补充

    1、指令补全

    • ① Rvm 指令库
      $ ruby -v # 查看ruby 版本
      $ rvm list known # 列出已知的 ruby 版本
      $ rvm install 2.3.0 # 选择指定 ruby 版本进行更新
      $ rvm get stable # 更新 rvm
      $ rvm use 2.2.2 # 切换到指定 ruby 版本
      $ rvm use 2.2.2 --default # 设置指定 ruby 版本为默认版本
      $ rvm list # 查询已安装的 ruby 版本
      $ rvm remove 1.9.2 # 卸载移除 指定 ruby 版本

        $ curl -L https://get.rvm.io | bash -s stable                    #  安装 rvm 环境
        $ curl -sSL https://get.rvm.io | bash -s stable --ruby           #  默认安装 rvm 最新版本
        $ curl -sSL https://get.rvm.io | bash -s stable --ruby=2.3.0     #  安装 rvm 指定版本
        $ source ~/.rvm/scripts/rvm                                      #  载入 rvm
      
    • ② gem 指令库*
      $ gem -v # 查看 gem 版本
      $ gem source # 查看 gem 配置源
      $ gem source -l # 查看 gem 配置源目录
      $ gem sources -a url # 添加 gem 配置源(url 需换成网址)
      $ gem sources --add url # 添加 gem 配置源(url 需换成网址)
      $ gem sources -r url # 删除 gem 配置源(url 需换成网址)
      $ gem sources --remove url # 删除 gem 配置源(url 需换成网址)
      $ gem update # 更新 所有包
      $ gem update --system # 更新 Ruby Gems 软件
      $
      $ gem install rake # 安装 rake,从本地或远程服务器
      $ gem install rake --remote # 安装 rake,从远程服务器
      $ gem install watir -v 1.6.2 # 安装 指定版本的 watir
      $ gem install watir --version 1.6.2 # 安装 指定版本的 watir
      $ gem uninstall rake # 卸载 rake 包
      $ gem list d # 列出 本地以 d 打头的包
      $ gem query -n ''[0-9]'' --local # 查找 本地含有数字的包
      $ gem search log --both # 查找 从本地和远程服务器上查找含有 log 字符串的包
      $ gem search log --remoter # 查找 只从远程服务器上查找含有 log 字符串的包
      $ gem search -r log # 查找 只从远程服务器上查找含有log字符串的包
      $
      $ gem help # 提醒式的帮助
      $ gem help install # 列出 install 命令 帮助
      $ gem help examples # 列出 gem 命令使用一些例子
      $ gem build rake.gemspec # 把 rake.gemspec 编译成 rake.gem
      $ gem check -v pkg/rake-0.4.0.gem # 检测 rake 是否有效
      $ gem cleanup # 清除 所有包旧版本,保留最新版本
      $ gem contents rake # 显示 rake 包中所包含的文件
      $ gem dependency rails -v 0.10.1 # 列出 与 rails 相互依赖的包
      $ gem environment # 查看 gem 的环境
      $
      $ sudo gem -v # 查看 gem 版本(以管理员权限)
      $ sudo gem install cocoa pods # 安装 CocoaPods(以管理员权限)
      $ sudo gem install cocoapods # 安装 CocoaPods(以管理员权限)
      $ sudo gem install cocoapods --pre # 安装 CocoaPods 至预览版(以管理员权限)
      $ sudo gem install cocoapods -v 0.39.0 # 安装 CocoaPods 指定版本(以管理员权限)
      $ sudo gem update cocoapods # 更新 CocoaPods 至最新版(以管理员权限)
      $ sudo gem update cocoapods --pre # 更新 CocoaPods 至预览版(以管理员权限)
      $ sudo gem uninstall cocoapods -v 0.39.0 # 移除 CocoaPods 指定版本(以管理员权限)

    • ③ pod 指令库
      $ pod setup # CocoaPods 将信息下载到~/.cocoapods/repos 目录下。如果安装 CocoaPods 时不执行此命令,在初次执行 pod intall 命令时,系统也会自动执行该指令
      $ pod --version # 检查 CocoaPods 是否安装成功及其版本号
      $ pod install # 安装 CocoaPods 的配置文件 Podfile

    参考文章:

    01:【iOS工具】rvm、Ruby环境和CocoaPods安装使用及相关报错问题解决(2016.12.15 更新)
    02: iOS - CocoaPods版本升级那些坑
    03:gem源替换成淘宝的源
    04 - Rvm、Ruby及Cocoapods安装
    05 - RVM 和 Ruby的安装
    06 - iOS的库依赖管理工具CocoaPods
    07 - CocoaPods的安装以及遇到的坑
    08 - ios开发怎样卸载已经安装的cocoapod
    09 - 配置CocoaPods前 - 本地安装好Ruby环境
    10 - iOS 学习笔记二【cocopods安装使用和安装过程中遇到的问题及解决办法】【20160725更新】
    11 - ruby学习及编译ruby缺少openssl问题解决

    问题解决
    01 - 解决升级EI Capiton CocoaPods "pod: command not found"
    02 - curl: (35) Server aborted the SSL handshake
    03 - 第一种 - Error running '__rvm_make -j 1'
    04 - 第二种 - Error running '__rvm_make -j 1'
    05 - [!] Unable to add a source with url "xxxxxxxxxxxxx"
    06 - Error running 'requirements_osx_brew_update_system ruby-2.0.0-p643'
    07 - 关于安装cocoapods遇到的一些坑(ERROR: Error installing cocoapods: activesupport requires Ruby version >= 2.2)
    08 - Homebrew install: Failed during: git fetch origin master:refs/remotes/origin/master -n --depth=1
    09 - Pod /usr/bin/git clone https://github.com/CocoaPods/Specs.git master
    10pod install -bash: pod: command not found

    声明:

    本文根据【iOS工具】rvm、Ruby环境和CocoaPods安装使用及相关报错问题解决(2016.12.15 更新)进行的重新排班,和实际操作。相当于转载学习,而后,又添加了点扩充,用于自己长期学习资料留存。如果上面所有参考文章有侵权现象,请联系,删除。谢谢!

    相关文章

      网友评论

      本文标题: iOS - rvm、Ruby环境CocoaPods安装使用及相

      本文链接:https://www.haomeiwen.com/subject/mzlkfxtx.html