美文网首页
安装cocoapods(淘宝源不可用)

安装cocoapods(淘宝源不可用)

作者: 小星星灬 | 来源:发表于2017-09-14 11:19 被阅读127次

    首先要确定网,假如公司网设置了代理可能不能用,网不能用会报no such name (https://gems.ruby-china.org/specs.4.8.gz)

    1.检查是否安装过 cocoapods,

    $ pod

    //pod : command not found,没有安装过,需要安装。

    //否则就是已经安装过了。

    ———————————————————————————————————————

    1.检查 ruby 源是否是china,不是就切换。

    //查看当前ruby的源

    $ gem sources -l

    //移除被墙的。

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

    //添加下面链接

    $ gem sources -a https://gems.ruby-china.org/

    //查看添加成功没有。

    $ gem sources -l

    2.升级 gem 为最新版本。

    $ sudo gem update --system

    sudo gem update -n /usr/local/bin —system   (mac OS 10.11之后)

    3.下载 cocoapods。

    $ sudo gem install cocoapods

    sudo gem install -n /usr/local/bin cocoa pods      (mac OS 10.11之后)

    4.执行 sudo 命令需要输入密码,电脑的开机密码,输入的密码是看不到的,直接输入,输入完回车即可。

    5.安装 cocoapods。

    $ pod setup

    出现下面代码 表示成功

    CocoaPods 1.0.0.beta.6 is available.

    To update use: `gem install cocoapods --pre`

    [!] This is a test version we'd love you to try.

    For more information see http://blog.cocoapods.org

    and the CHANGELOG for this version http://git.io/BaH8pQ.

    Setup completed

    –––

    ———————————————————————————————————————

    1.新建工程,在终端中进入工程的根目录。

    $ cd空格,把工程的根目录拖进来,回车。 如 cd /Users/zxx/Desktop/CocoaPodsTest

    检查用户名前的字符串是否是程序根目录的文件夹名。

    2.创建 Podfile 文件。

    //注意大小写。

    $ touch Podfile

    3.打开 Podfile 等待编辑。

    $ open -e Podfile

    4.写入 platform :ios, '7.0'

    //7.0 是程序支持的最低系统版本。

    //然后就可以换行配置我们需要使用的第三方库。

    5.回到终端,使用 pod search 命令查询我们需要使用的第三方库是否支持 cocoapods。

    $ pod search AFNetwork

    复制 pod 'AFNetworking', '~> 3.1.0' 到 Podfile 文件中。

    //AFNetworking,第三方库的名称。3.0.4 第三方库的版本。

    6.重复粘贴所有需要使用的第三方库,保存并退出 Podfile 文件。

    7.执行 pod install 命令安装第三方库。

    $ pod install

    8.耐心等待,直到出现 [!] Please close any current Xcode sessions and use `Test111.xcworkspace` for this project from now on. 或者错误信息。

    9.使用 .xcworkspace 文件打开工程。使用 #import <> 导入头文件,使用第三方库。

    ——————————————————————————————————————————————————————

    追加第三方库。

    1.打开 Podfile 文件。

    2.添加新的第三方库配置,保存并退出。

    3.执行 pod update 命令,更新配置文件。

    $ pod update

    ————————————————————————————————————————————

    问题

    //每次安装更新 Podfile 文件的时候都会去同步本地的第三方库索引。如果本地的库比较旧,或者网不好,那么会在 Updating local specs repositories 卡非常久。

    //使用下面的命令可以跳过同步这一步。

    $ pod install --verbose --no-repo-update

    ————————————————————————————————————————————

    错误问题

    1.如果安装过多个 Xcode,使用上述命令的时候可能会出问题。

    $ sudo xcode-select -s /Applications/Xcode.app

    //回车,输入密码。重置命令脚本路径。

    2.[!] Could not automatically select an Xcode project. Specify one in your Podfile like so:

    xcodeproj 'path/to/Project.xcodeproj'

    工程根目录错误

    3、vim Podfile  创建文件

    4、pod update  更新

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

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

    相关文章

      网友评论

          本文标题:安装cocoapods(淘宝源不可用)

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