ℹ Please replace this with what you did.
eigen master ✔ bundle exec pod install 11:17:44
Analyzing dependencies
Pre-downloading: `Artsy+UIFonts` from `https://github.com/artsy/Artsy-UIFonts.git`, commit `6295cce382764bbca9f2b3e972f71eb2b4d32d57`
Pre-downloading: `FBSnapshotTestCase` from `https://github.com/orta/ios-snapshot-test-case.git`, commit `6b3e8978084388f9aae392fd1e0e21b1ddb88ae3`
Pre-downloading: `FLKAutoLayout` from `https://github.com/orta/FLKAutoLayout.git`, commit `4aa27fa1a9aba36d5465e6cd181ba4b78b0691d3`
Pre-downloading: `Interstellar` from `https://github.com/ashfurrow/Interstellar.git`, commit `3785de4184bd2b61761684d0be07804809681bb3`
Fetching podspec for `Keys` from `Pods/CocoaPodsKeys`
[!] Unable to satisfy the following requirements:
- `Nimble-Snapshots` required by `Podfile`
- `Nimble-Snapshots (= 4.0.1)` required by `Podfile.lock`
None of your spec sources contain a spec satisfying the dependency: `Nimble-Snapshots`.
You have either:
* out-of-date source repos which you can update with `pod repo update`.
* mistyped the name or version.
* not added the source repo that hosts the Podspec to your Podfile.
Note: as of CocoaPods 1.0, `pod repo update` does not happen on `pod install` by default.
None of your spec sources contain a spec satisfying the dependency: `Nimble-Snapshots (= 4.0.1)`.
You have either:
* out-of-date source repos which you can update with `pod repo update`.
* mistyped the name or version.
* not added the source repo that hosts the Podspec to your Podfile.
Note: as of CocoaPods 1.0, `pod repo update` does not happen on `pod install` by default.
eigen master ✔ bundle exec pod install 11:17:44
Analyzing dependencies
Pre-downloading: `Artsy+UIFonts` from `https://github.com/artsy/Artsy-UIFonts.git`, commit `6295cce382764bbca9f2b3e972f71eb2b4d32d57`
Pre-downloading: `FBSnapshotTestCase` from `https://github.com/orta/ios-snapshot-test-case.git`, commit `6b3e8978084388f9aae392fd1e0e21b1ddb88ae3`
Pre-downloading: `FLKAutoLayout` from `https://github.com/orta/FLKAutoLayout.git`, commit `4aa27fa1a9aba36d5465e6cd181ba4b78b0691d3`
Pre-downloading: `Interstellar` from `https://github.com/ashfurrow/Interstellar.git`, commit `3785de4184bd2b61761684d0be07804809681bb3`
Fetching podspec for `Keys` from `Pods/CocoaPodsKeys`
[!] Unable to satisfy the following requirements:
- `Nimble-Snapshots` required by `Podfile`
- `Nimble-Snapshots (= 4.0.1)` required by `Podfile.lock`
None of your spec sources contain a spec satisfying the dependency: `Nimble-Snapshots`.
You have either:
* out-of-date source repos which you can update with `pod repo update`.
* mistyped the name or version.
* not added the source repo that hosts the Podspec to your Podfile.
Note: as of CocoaPods 1.0, `pod repo update` does not happen on `pod install` by default.
Perhaps we need some logic checking if there is a dependency with with no "version", and the same one with a version?
Alternatively, could move the list into the line
None of your spec sources contain a spec satisfying the dependency
e.g.
eigen master ✔ bundle exec pod install 11:17:44
Analyzing dependencies
Pre-downloading: `Artsy+UIFonts` from `https://github.com/artsy/Artsy-UIFonts.git`, commit `6295cce382764bbca9f2b3e972f71eb2b4d32d57`
Pre-downloading: `FBSnapshotTestCase` from `https://github.com/orta/ios-snapshot-test-case.git`, commit `6b3e8978084388f9aae392fd1e0e21b1ddb88ae3`
Pre-downloading: `FLKAutoLayout` from `https://github.com/orta/FLKAutoLayout.git`, commit `4aa27fa1a9aba36d5465e6cd181ba4b78b0691d3`
Pre-downloading: `Interstellar` from `https://github.com/ashfurrow/Interstellar.git`, commit `3785de4184bd2b61761684d0be07804809681bb3`
Fetching podspec for `Keys` from `Pods/CocoaPodsKeys`
[!] Unable to satisfy the following requirements:
- `Nimble-Snapshots` required by `Podfile`
- `Nimble-Snapshots (= 4.0.1)` required by `Podfile.lock`
None of your spec sources contain a spec satisfying the dependency: `Nimble-Snapshots`, `Nimble-Snapshots (= 4.0.1)`.
You have either:
* out-of-date source repos which you can update with `pod repo update`.
* mistyped the name or version.
* not added the source repo that hosts the Podspec to your Podfile.
Note: as of CocoaPods 1.0, `pod repo update` does not happen on `pod install` by default.
👍 on the alternative
This will involve changing https://github.com/CocoaPods/CocoaPods/blob/8d6d99a0de25e47b0d987f9a5e3a87cb2f37ed63/lib/cocoapods/resolver.rb#L422 to join just the requirements instead of adding the full string for each conflict.
How to solve this Problem??
I'm getting the same issue but with Alamofire. Please suggest a workaround?
This issue has been closed, please open up a new issue complete with all of the details requested in the issue template.
Also, if this is what you're seeing, the work around is written in the error message: run pod repo update
.
I met the following issue, I tried sudo gem install cocopods --pre and also pod repo update, no progress, any help would be appreciated. Thank you.
pod install
Analyzing dependencies
[!] Unable to satisfy the following requirements:
CSVImporter (~> 1.3)
required by Podfile
CSVImporter (~> 1.3)
required by Podfile
None of your spec sources contain a spec satisfying the dependency: CSVImporter (~> 1.3)
.
You have either:
pod repo update
.Note: as of CocoaPods 1.0, pod repo update
does not happen on pod install
by default.
rm -rf ~/.cocoapods/repos/master
pod setup --verbose
pod repo update
pod install
I did the above command, still this issue, not working. I tried to remove the version at the end, just adding like
pod 'CSVImporter'
then it auto detecting version 1.2.0 but this version is not suitable for its inner HandSwift pod setting which requires 1.3.0
Therefore, I got the CSVImporter with ver sion 1.2 but the compiler complain about the HandSwift pod issues.
Solved the problem by the down casting the pod library
pod 'HandySwift', '1.1.0'
pod 'CSVImporter'
pod update
Works like a charm ( :
For me, I was using wrong version which wasn't exist causing the issue.
It can be solved by executing the below commands in terminal.
pod repo remove master
pod setup
pod install
@dmsaravanan thanks, it works!
So how to resolve this issue, I have did like this :
rm -rf ~/.cocoapods/repos/master
pod setup --verbose
pod repo update
pod install
I can not to resolve it.
Most helpful comment
It can be solved by executing the below commands in terminal.