Reputation: 101
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
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