Reputation: 1
I am trying to install pods for my project, but it fails with this error
[!] /bin/bash -c set -e sh build.sh cocoapods-setup
WARNING: The active Xcode command line tools, as returned by 'xcode-select -p', are not from Xcode. The newest version of Xcode will be used instead. Print: Entry, ":CFBundleVersion", Does Not Exist
Upvotes: 0
Views: 463
Reputation: 6775
sudo rm -rf /Library/Developer/CommandLineTools
sudo xcode-select --install
This will install the command line tools.
You can also get it from here: Apple Downloads and install it.
Upvotes: 1