美文网首页cocoaPods
无标题CocoaPods安装方法 2021-1-4(全程免翻墙)

无标题CocoaPods安装方法 2021-1-4(全程免翻墙)

作者: 笑笑菜鸟 | 来源:发表于2021-02-21 14:27 被阅读0次

    在安装cocoapods上经历过不少折腾,终于实现了较为流畅的安装过程,在此做个记录,以便不时之需。

    首先打开终端

    1.安装Homebrew

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

    2.安装rvm

    curl -L get.rvm.io | bash -s stable source ~/.bashrcsource ~/.bash_profile

    注意:安装homebrew或安装rvm出错 (Failed to connect to raw.githubusercontent.com port 443: Connection refused)参考:https://blog.csdn.net/txl910514/article/details/105880125

    3.更新系统上的ruby

    rvm install 2.6.3

    这里我直接安装的是2.6.3版本,如果你想安装其他版本,也可先使用

    rvm list known

    列出可安装的版本,然后用install命令安装

    4.将刚刚安装的ruby设置为默认版本

    rvm use 2.6.3 --default

    5.更换ruby镜像源

    sudo gem update--systemgem sources--removehttps://rubygems.org/gem sources--addhttps://gems.ruby-china.com/

    可以使用

    gem sources -l

    来看是否更换成功

    6.安装CocoaPods

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

    7.clone CocoaPods仓库

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

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

    也可以用gitee上的一个私人fork的仓库,这个仓库比清华的速度更快,但是有可能更新不及时

    gitclonehttps://gitee.com/mirrors/CocoaPods-Specs.git  ~/.cocoapods/repos/trunk

    上面两个CocoaPods仓库选择一个clone就行了

    到这里CocoaPods已经安装完成了,可以使用

    pod search AFNetworking

    来检查是否能正常使用

    *如果你是M1芯片的Mac,还需要做以下操作:

    1.访达-应用程序-实用工具里,右键点击终端-显示简介 (如果找不到实用工具,请以列表或分栏的方式显示项目)

    2.勾选使用Rosetta打开

    3.执行sudo gem install ffi

    附:

    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-1-4(全程免翻墙)

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