cocoapod 安装的详细流程

cocoapod安装的详细教程

最近几个月来闲的无聊,把以往的其中一些东西 在这里发出来与大家共享,希望能够对大家有一些微薄的帮助

cocoapod 安装的详细流程:

当您接手一台新电脑(macOS),开始安装cocoapod时,详细步骤如下:

1,安装RVM 命令如下:

curl -L https://get.rvm.io | bash -s stable

2,更新RVM 命令如下:

rvm get stable

3,安装RVM后,载入RVM环境,命令如下:

source ~/.rvm/scripts/rvm

4,安装homebrew(必须安装,否则安装cocoapods失败)命令如下:

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

5,通过rvm安装ruby:

rvm install 2.6.3

6,将安装的ruby版本设为系统默认版本:

rvm 2.6.3 —default

7,查看RVM版本

rvm -v

8,查看当前ruby:

ruby -v

9,更换ruby源之前先看下当前镜像源:

gem sources -l

10,更换源,先移除当前的源:

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

11,添加新的源:

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

12,安装cocoapods:

sudo gem install cocoapods 

苹果系统升级 OS X El Capitan 后改为:sudo gem install -n /usr/local/bin cocoapods    或者    sudo gem install cocoapods -n /usr/local/bin

13,如果安装了多个xcode,使用如下命令选择(一般需要选择最近的Xcode版本):

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

14,安装cocoapods成功后,执行如下命令 这是一个漫长的过程:

pod setup

当pod setup完成后,cocoapod就安装完成啦。

 

上一篇:2021-02-12


下一篇:使用RVM升级Linux Ruby版本