美文网首页iOSCocoa Pods
CocoaPods 的安装流程

CocoaPods 的安装流程

作者: andyJi | 来源:发表于2017-07-12 14:07 被阅读1次
  • 移除现有Ruby默认源
$ gem sources --remove https://rubygems.org/
  • 使用新的源
$ gem sources -a https://ruby.taobao.org/
  • 验证新源是否替换成功
$ gem sources -l
  • 安装CocoaPods

    • $ sudo gem install cocoapods

    备注:苹果系统升级OS X EL Capitan后改为

    $sudo gem install -n /usr/local/bin cocoapods

    • $ pod setup
  • 更新gem

$ sudo gem update --system
  • 新建工程,并在终端用cd指令到文件夹内
$ pod search 第三方
  • 新建文件vim Podfile
$ vim Podfile

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

source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '8.0'
inhibit_all_warnings!
use_frameworks!

target 'prj' do
    pod 'AFNetworking', '~>3.1'
end
  • 导入第三方库
$ pod install
  • 退出终端

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

终端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后会出现的插件错误

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 是平台版本号 ,一定要加上

相关文章

  • 2017 cocoapods

    最新cocoapods安装流程 2017.41.安装RVM(1)安装RVM ...

  • iOS安装CocoaPods完整流程+使用

    献给还未使用上CocoaPods的同学们! 首先,安装Cocoapods之前需要安装许多东西,具体流程是这样, ...

  • cocoapods安装的坑(pod setup等待时间长)

    正常安装cocoapods流程大致如下: 解决坑:我遇到的问题比较奇葩,cocoapods安装一切正常,1.1.1...

  • CocoaPods 安装流程

    一、CocoaPods 安装流程 1、安装或更新Ruby sudo gem update --system 2、更...

  • mac cocoapods安装

    虽然使用cocoapods已经有几年,但从未整理过cocoapods安装的安装流程,以至于重新安装时碰到问题需要一...

  • cocoapods安装流程

    第一步先升级ruby版本 在终端执行 /usr/bin/ruby -e "$(curl -fsSL https:/...

  • cocoapods安装流程

    1.安装RVM(1)安装RVMcurl -L get.rvm.io | bash -s stable(2)测试是否...

  • CocoaPods 安装流程

    iOS 最新版 CocoaPods 的安装流程 原文:http://www.cnblogs.com/zxs-199...

  • cocoaPods安装流程

    前言 在iOS项目中使用第三方类库可以说是非常常见的事,但是要正确地配置他们有时候是非常繁琐的事情,幸运的是Coc...

  • CocoaPods安装流程

    iOS 最新版 CocoaPods 的安装流程 1.移除现有Ruby默认源 $gem sources --remo...

网友评论

    本文标题:CocoaPods 的安装流程

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