Pod Install Displaying Error in Cocoapods Version 1.0.0.Beta.1

Pod install displaying error in cocoapods version 1.0.0.beta.1

You have to specify a target for each pod.

e.g. if before you had your Podfile written like this:

pod 'Alamofire', '~> 3.1.4'
pod 'SwiftyJSON', '~> 2.3.2'

just change it to

target "TargetName" do
pod 'Alamofire', '~> 3.1.4'
pod 'SwiftyJSON', '~> 2.3.2'
end

getting compile Errors after run Pod install

Try to remove Derived Data or Clean Build Folder

private Pod install

Make sure the user on the other system has read access to the pod repository.

`pod repo update` does not happen error in CocoaPods

You might have a broken Specs repository. Cocoapods suggest you delete your local copies and reclone. Try:

$ sudo rm -fr ~/.cocoapods/repos/master

And then:

$ pod setup

I'd also recommend running:

sudo rm -fr ~/Library/Caches/CocoaPods/

before you run pod setup to clear the cache.

Here's their link: http://blog.cocoapods.org/Repairing-Our-Broken-Specs-Repository/



Related Topics



Leave a reply



Submit