美文网首页
Cocoapods的安装

Cocoapods的安装

作者: Vampire丶Lv | 来源:发表于2016-04-26 15:18 被阅读42次

    Cocoapods的安装过程以及遇到的问题和解决方法:

    第一大步就是安装RVM环境:

    在终端上输入下面的命令: 👇

    curl -L get.rvm.io | bash -s stable

    错误:curl: (6) Couldn't resolve host 'get.rvm.io'

    在浏览器上访问get.rvm.io,实际跳转到如下地址

    https://raw.githubusercontent.com/wayneeseguin/rvm/master/binscripts/rvm-installer

    所以,修改命令:

    curl -L https://raw.githubusercontent.com/wayneeseguin/rvm/master/binscripts/rvm-installer | bash -s stable

    (PS: 如果电脑上安装个多个版本的Xcode,先在终端输入”sudo xcode-select -s “,然后,打开Xcode—>右键显示包内容,找到Developers文件夹拖到终端里面,就是直接扔到s后面就👌了)

    然后提示成功之后,$ source ~/.bashrc

    $ source ~/.bash_profile  安装完成后,输入rvm -v 查看是否安装成功;

    然后就是用RVM来升级Ruby环境以达到要求,

    #查看当前ruby版本

    $ ruby -v

    ruby 1.8.7

    #列出已知的ruby版本

    $ rvm list known

    #安装ruby 1.9.3

    $ rvm install 1.9.3

    *****安装版本的时候出现问题“No fallback URL could be found”,改一下电脑的DNS就可以了。

    http://www.cnblogs.com/cwllong/p/5072882.html

    1.移除现有Ruby默认源       (注意所有命令中的空格)

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

    2.使用新的ruby资源

    $gem sources -a https://ruby.taobao.org/  ———— 已作废

    $ gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/     2018.11.6更新

    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

    5.更新gem

    $sudo gem update --system

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

    $pod search 第三方

    7.新建文件 vim “Podfile”,

    $vim Podfile

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

    platform:ios, '6.0'

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

    8.导入第三方库

    $pod install

    9.退出终端

    以下是我用以前的安装流程安装时出现的一些错误

    终端  cocoapods 下载bug调试:

    错误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 ... (Errno::EPERM)

    Operation not permitted - /usr/bin/pod

    解决方案:苹果系统升级OS X EL Capitan后会出现的插件错误,将安装流程 4.安装CocoaPods 的

    (1)sudo gem install cocoapods ——>改为sudo gem install -n /usr/local/bin

    cocoapods

    错误3:

    [!] Unable to satisfy the following requirements:- `AVOSCloud (~> 3.1.6.3)` required by `Podfile`

    Specs satisfying the `AVOSCloud (~> 3.1.6.3)` dependency were found, but they required a higher minimum deployment target.

    解决方案:安装流程:Podfile文件 中   platform:ios, ‘6.0’  后边的 6.0 是平台版本号 ,一定要加上

    错误4:提示错误,Error installing pods:activesupport requires Ruby version >=2.2.2

    解决方案:更新ruby的版本,命令行查看自己的版本,太低了。。升级到2.2.2 及以上任何一版都可以,重新执行sudo gem install cocoapods 。

    相关文章

      网友评论

          本文标题:Cocoapods的安装

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