美文网首页
iOS 最新版 CocoaPods 的安装流程

iOS 最新版 CocoaPods 的安装流程

作者: 神一样的男人卫 | 来源:发表于2017-06-05 16:16 被阅读160次

    上次在简书上看到安装CocoaPods的文章,我就试了试,但是发现每次执行到$sudo gem install cocoapods这一步就会报ERROR:  While executing gem ... (Errno::EPERM)    Operation not permitted - /usr/bin/pod这个错,于是乎去向楼主求助,没回应了,最后百度了一下查到原因了--苹果系统升级的原因。。。下面将给出iOS最新的CocoaPods安装流程:

    1.移除现有Ruby默认源

    $gem sources --removehttps://rubygems.org/

    2.使用新的源

    $gem sources -ahttps://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

    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 fetchinghttp://ruby.taobao.org/:

    bad response Not Found 404 (http://ruby.taobao.org/specs.4.8.gz)

    解决方案:把安装流程中 $gem sources -ahttp://ruby.taobao.org/---改为---->$gem sources -ahttps://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 是平台版本号 ,一定要加上

    本文的CocoaPods安装流程转载于https://zhidao.baidu.com/question/1862891903252349347.html

    相关文章

      网友评论

          本文标题:iOS 最新版 CocoaPods 的安装流程

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