Reputation: 3820
This seems like a super simple pod install, yet I'm getting this strange error. Just don't see what's wrong here.
Podfile
# platform :ios, '9.0'
target 'iLook-990' do
use_frameworks!
pod 'OAuthSwift', '~> 1.0.0'
end
Error message:
[!] Unable to satisfy the following requirements:
OAuthSwift (~> 1.0.0)
required by Podfile
None of your spec sources contain a spec satisfying the dependency: OAuthSwift (~> 1.0.0)
.
You have either:
pod repo update
.Upvotes: 0
Views: 124
Reputation: 320
if that's the exact same text from the Podfile, you need to remove the # from the first line
platform :ios, '9.0'
target 'iLook-990' do
use_frameworks!
pod 'OAuthSwift', '~> 1.0.0'
end
Upvotes: 1