김지인
김지인

Reputation: 101

How do I fix Ignoring ffi-1.15.3 because its extensions are not built

I'm using CocoaPods 1.10.2. And when I type pod --version in my terminal, I'm getting the following warning:

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

How could I fix this?

Upvotes: 9

Views: 13720

Answers (1)

Guru Dev
Guru Dev

Reputation: 196

In my case, this solution worked.

Download and install Homebrew using the following method: Open terminal and paste in the following command string:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

And please install cocoapods.

brew install cocoapods

Upvotes: 4

Related Questions