Mac Mini 安装搭建swift开发框架时,使用cocopods第三方库管理工具时,在安装过程中遇到的问题总结了一下!

时间:2020-11-28 16:09:06

首先安装cocopods是需要一些环境配置;例如buby,brew。如果在安装过程中遇到下面的错误信息提示,那我的这篇文章就拯救了你。

1.错误提示:

ERROR:  Error installing cocoapods:
activesupport requires Ruby version >= 2.2.2.

原因:ruby版本过低,需要升级。执行升级命令:rvm install 2.3(版本号)

2.rvm install 2.3 安装失败:

rvm_error "Failed to update Homebrew, follow instructions here:
    https://github.com/Homebrew/homebrew/wiki/Common-Issues
and make sure \`brew update\` works before continuing."

原因:brew版本没有升级

3. brew update 失败:

Error: Xcode alone is not sufficient on Sierra.
Install the Command Line Tools:
  xcode-select --install

Error: Git must be installed and in your PATH!
原因:使用brew 升级ruby 失败,如提示所说,安装ruby除了安装Xcode外,还需要安装 Command Line Tools
          打开终端,输入命令:xcode-select --install

         安装后,确保安装成功,输入一下命令:xcode-select -p

            出现"/Library/Developer/CommandLineTools"

以上都安装完成后,接下来你就可以轻松地执行安装cocopods命令:sudo gem install cocoapods

再执行:pod setup 命令,出现Setup Completed提示,恭喜你已经完成了cocopods安装!!!