CocoaPods Install Issue
Answer :
I had the same issue before. I fixed it by putting the following lines in the terminal:
cd ~/.cocoapods/repos rm -rf master pod setup
You need reinstall cocoapods: so
sudo gem uninstall cocoapods sudo gem install cocoapods pod setup
I was facing the same issue. I resolved the issue by running the following commands on the same path:
rm -rf ~/.cocoapods/repos/trunk/ pod install
Comments
Post a Comment