Mac 安装CocoaPods报错解决 :Ignoring ffi-1.13.1 because its extensions are not built.

不知道是不是更新了macOS Big Sur的原因,终端安装不了cocoapods,会报如下错误。

终端报错信息:

Ignoring ffi-1.13.1 because its extensions are not built. Try: gem pristine ffi --version 1.13.1

经过一番搜索,有一篇CSDN给出了一个解决方法,在终端输入代码段:

xcode-select --install

但是在输完后我发现要下载一个下载时间长达50个小时的Xcode Command Line Tool

这可不行,于是我另谋出路。

发现其实mac上已经安装了这个Tool,如果已安装输入以下命令会显示版本。

xcode-select --version	// 查看版本

有时Command Line Tools出了问题,可以先尝试恢复默认设置来解决,终端输入命令:

xcode-select --reset

再安装CocoaPods

sudo gem install cocoapods

 安装成功!

Done installing documentation for ffi, addressable, cocoapods-core, cocoapods after 29 seconds
4 gems installed//表明已安装成功

pod --version//查看安装版本

你可能感兴趣的:(swift,ios,swift,xcode,mac,os,x)