Mac OSX安装CocoaPods教程

来源:互联网 发布:lamp一键安装包ubuntu 编辑:程序博客网 时间:2024/05/21 07:09

前言:这里记录一下最新的在Mac OSX10.12下安装cocoapods教程。
关于为什么使用cocoapods就不说了,好处可能就是省心省事,当然我不觉得多省事,因为有时候还需要解决因为pod导致的问题。

1、查看ruby是否安装,一般需要再更新下

$ruby -vruby 2.0.0p648 (2015-12-16 revision 53162) [universal.x86_64-darwin16]$sudo gem update --system

2、更新ruby镜像

淘宝的那个镜像(https://ruby.taobao.org/ )已经不可用了。官方的需要FQ。所以我们现在用最新支持的ruby镜像(https://gems.ruby-china.org/)

$gem sources --remove https://rubygems.org/ $gem sources --add https://gems.ruby-china.org/$gem sources -l  (用来检查使用替换镜像位置成功)

3、安装

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

出现如下,说明成功

Successfully installed xcodeproj-1.4.4Fetching: ruby-macho-1.1.0.gem (100%)Successfully installed ruby-macho-1.1.0Fetching: nap-1.1.0.gem (100%)Successfully installed nap-1.1.0Fetching: molinillo-0.5.7.gem (100%)Successfully installed molinillo-0.5.7Fetching: gh_inspector-1.0.3.gem (100%)Successfully installed gh_inspector-1.0.3Fetching: fourflusher-2.0.1.gem (100%)Successfully installed fourflusher-2.0.1Fetching: escape-0.0.4.gem (100%)Successfully installed escape-0.0.4Fetching: cocoapods-try-1.1.0.gem (100%)Successfully installed cocoapods-try-1.1.0Fetching: netrc-0.7.8.gem (100%)Successfully installed netrc-0.7.8Fetching: cocoapods-trunk-1.2.0.gem (100%)Successfully installed cocoapods-trunk-1.2.0Fetching: cocoapods-stats-1.0.0.gem (100%)Successfully installed cocoapods-stats-1.0.0Fetching: cocoapods-search-1.0.0.gem (100%)Successfully installed cocoapods-search-1.0.0Fetching: cocoapods-plugins-1.0.0.gem (100%)Successfully installed cocoapods-plugins-1.0.0Fetching: cocoapods-downloader-1.1.3.gem (100%)Successfully installed cocoapods-downloader-1.1.3Fetching: cocoapods-deintegrate-1.0.1.gem (100%)Successfully installed cocoapods-deintegrate-1.0.1Fetching: fuzzy_match-2.0.4.gem (100%)Successfully installed fuzzy_match-2.0.4Fetching: thread_safe-0.3.6.gem (100%)Successfully installed thread_safe-0.3.6Fetching: tzinfo-1.2.3.gem (100%)Successfully installed tzinfo-1.2.3Fetching: minitest-5.10.2.gem (100%)Successfully installed minitest-5.10.2Fetching: i18n-0.8.1.gem (100%)Successfully installed i18n-0.8.1Fetching: activesupport-4.2.8.gem (100%)Successfully installed activesupport-4.2.8Fetching: cocoapods-core-1.2.1.gem (100%)Successfully installed cocoapods-core-1.2.1Fetching: cocoapods-1.2.1.gem (100%)Successfully installed cocoapods-1.2.1Parsing documentation for xcodeproj-1.4.4Installing ri documentation for xcodeproj-1.4.4Parsing documentation for ruby-macho-1.1.0Installing ri documentation for ruby-macho-1.1.0Parsing documentation for nap-1.1.0Installing ri documentation for nap-1.1.0Parsing documentation for molinillo-0.5.7Installing ri documentation for molinillo-0.5.7Parsing documentation for gh_inspector-1.0.3Installing ri documentation for gh_inspector-1.0.3Parsing documentation for fourflusher-2.0.1Installing ri documentation for fourflusher-2.0.1Parsing documentation for escape-0.0.4Installing ri documentation for escape-0.0.4Parsing documentation for cocoapods-try-1.1.0Installing ri documentation for cocoapods-try-1.1.0Parsing documentation for netrc-0.7.8Installing ri documentation for netrc-0.7.8Parsing documentation for cocoapods-trunk-1.2.0Installing ri documentation for cocoapods-trunk-1.2.0Parsing documentation for cocoapods-stats-1.0.0Installing ri documentation for cocoapods-stats-1.0.0Parsing documentation for cocoapods-search-1.0.0Installing ri documentation for cocoapods-search-1.0.0Parsing documentation for cocoapods-plugins-1.0.0Installing ri documentation for cocoapods-plugins-1.0.0Parsing documentation for cocoapods-downloader-1.1.3Installing ri documentation for cocoapods-downloader-1.1.3Parsing documentation for cocoapods-deintegrate-1.0.1Installing ri documentation for cocoapods-deintegrate-1.0.1Parsing documentation for fuzzy_match-2.0.4Installing ri documentation for fuzzy_match-2.0.4Parsing documentation for thread_safe-0.3.6Installing ri documentation for thread_safe-0.3.6Parsing documentation for tzinfo-1.2.3Installing ri documentation for tzinfo-1.2.3Parsing documentation for minitest-5.10.2Installing ri documentation for minitest-5.10.2Parsing documentation for i18n-0.8.1Installing ri documentation for i18n-0.8.1Parsing documentation for activesupport-4.2.8unable to convert "\x84" from ASCII-8BIT to UTF-8 for lib/active_support/values/unicode_tables.dat, skippingInstalling ri documentation for activesupport-4.2.8Parsing documentation for cocoapods-core-1.2.1Installing ri documentation for cocoapods-core-1.2.1Parsing documentation for cocoapods-1.2.1Installing ri documentation for cocoapods-1.2.123 gems installed
0 0
原创粉丝点击