Reputation: 129
Xcode:8.2.1,questions as follows:
➜ PodTest git:(master) ✗ pod install
Analyzing dependencies
Downloading dependencies
Installing Alamofire (4.2.0)
Generating Pods project
[1] 85146 abort pod install
➜ PodTest git:(master) ✗ pod --version
1.1.1
How to solve this problem?
Upvotes: 1
Views: 201
Reputation: 22212
I managed to solve the issue by updating the xcodeproj gem:
sudo gem install xcodeproj
Upvotes: 0
Reputation: 1164
This has been discussed on this thread https://github.com/CocoaPods/CocoaPods/issues/6102
The solution, not the best but the easier if you don't wanna know about the problem, was to use cocoapods 1.2.0-beta.1: gem install cocoapods --pre
Upvotes: 1