美文网首页
cocoapods 安装最新教程2021年6月7日免翻墙

cocoapods 安装最新教程2021年6月7日免翻墙

作者: Mr_墨 | 来源:发表于2021-06-07 17:52 被阅读0次

    首先你先下载xcode、安装好xcode后 

    1、打开终端 安装Homebrew

    /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

    查看当前Ruby版本

    ruby-v

    执行结果:ruby2.7.0p0(2019-12-25revision647ee6f091)[x86_64-darwin19]

    2、升级Ruby环境,首先需要安装rvm

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

    source ~/.bashrc

    source ~/.bash_profile

    3、查看rvm版本

    rvm -v

    rvm1.29.10(latest)byMichalPapis,PiotrKuczynski,WayneE.Seguin[https://rvm.io]

    4、列出ruby可安装的版本信息

    rvm list known

    5、安装一个ruby版本

    rvm install 2.7.0

     // 注意:安装过程中需要两次按下 Enter 键, 第二次按下后需要输入电脑访问密码(不可见,只管输入就行);// 如果你电脑没有安装Xcode和Command Line Tools for Xcode以及Homebrew 会自动下载安装,建议提前安装这三者.

    6、设置为默认版本

    rvm use 2.7.0 --default

    7、更换源

    sudo gem update --system

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

    gem sources --add https://gems.ruby-china.com/

    8、为了验证你的Ruby镜像是并且仅是ruby-china,执行以下命令查看

    gem sources -l

    如果是以下结果说明正确,如果有其他的请自行百度解决

    *** CURRENT SOURCES *** 

    https://gems.ruby-china.com/

    9、这时候才正式开始安装CocoaPods

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

    10、如果安装了多个Xcode使用下面的命令选择(一般需要选择最近的Xcode版本)

    sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer

    11、安装本地库

    pod setup

    12、检查下自己是否已经安装好cocoapods 

    pod search AFNetworking

    如果显示:

    -> AFNetworking (4.0.1)

     A delightful networking framework for Apple platforms.

     pod 'AFNetworking', '~> 4.0.1'

    - Homepage: https://github.com/AFNetworking/AFNetworking

    ...

    这里说明你已经成功了!恭喜

    如果出现 Unable to find a pod with name, author, summary, or description matching `AFNetworking`这个问题那就手动安装本地库

    最新版的MacOS Catalina系统命令行执行pod setup命令直接结束啦;

    莫着急,我们手动安装本地库,速度绝对快

    这里使用的是清华大学fork的CocoaPods仓库

    git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git ~/.cocoapods/repos/trunk

    附:

    1.Homebrew官方镜像地址

    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

    2.CocoaPods官方repo地址

    git clone https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/trunk

    相关文章

      网友评论

          本文标题:cocoapods 安装最新教程2021年6月7日免翻墙

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