[!] Unable to add a source with url git@github.com:CocoaPods/Specs.git
named master-1
. You can try adding it manually in ~/.cocoapods/repos
For me, I had to pod setup
first.
You may need to reset your command line tools:
sudo xcode-select -r
I was receiving the same error message. Then I noticed, that the wrong Xcode environment was selected (it pointed to an old version which I deleted in the meantime). The command above resets it to the default command line path.
Alternatively you might have no command line tools installed. In that case, download them from the Apple site and install them.
Go to ~/.cocoapods/repos and run git clone https://github.com/CocoaPods/Specs.git master
Please follow this link for this problem. Its possible to forgott set your newly install Xcode path on command-line tool. Xcode-->Preferences-->Locations-->Command line tool --> set your Xcode.
When you get above error it means, you didn't do the pod setup
instructions:
First install the cocoapods in you Mac if it is not already installed. Use terminal.
sudo gem install cocoapods --pre
sudo gem install activesupport -v 4.2.6 sudo gem install cocoapods
Set up the pod using command pod setup
after doing these initial set up you are ready to make your project as work space project. You can follow these commands using terminal
List down your cocoa pods init it :
# Uncomment the next line to define a global platform for your project
#platform :ios, '9.0'
target 'SampleProject' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for SampleProject
pod 'SlideMenuControllerSwift'
target 'SampleProjectTests' do
inherit! :search_paths
# Pods for testing
end
target 'SampleProjectUITests' do
inherit! :search_paths
# Pods for testing
end
end
it will help you.
or else
After installation of cocoapods than you can download the cocoa master repo manually into Mac.
$ cd /Users/username/.cocoapods/repos
$ git clone https://github.com/CocoaPods/Specs.git master
This is often happening on initial pod install. I tried all and this steps helped me
Please follow these steps:
1] pod repo update
2] pod install
I hope that works for you. All the best