Reputation: 731
I run pod install
, but it falls with error LoadError - cannot load such file -- xcodeproj/prebuilt/x86_64-darwin12.5.0-2.0.0/xcodeproj_ext
My environment:
CocoaPods : 0.29.0
Ruby : ruby 2.0.0p247 (2013-06-27 revision 41674) [x86_64-darwin12.5.0]
RubyGems : 2.0.3
Host : Mac OS X 10.9.1 (13B42)
Xcode : 4.6.3 (4H1503)
Ruby lib dir : /Users/konstantinmakarychev/.rbenv/versions/2.0.0-p247/lib
Repositories : master - https://github.com/CocoaPods/Specs.git @ 299f20b0909a26e46ffa381dcfc5b7fdd7dc2583
Any ideas?
Upvotes: 3
Views: 876
Reputation: 731
I've solved my problem by myself:
:~$ gem update
:~$ gem pristine --all
:~$ gem install cocoapods
:~$ pod install
Upvotes: 6
Reputation: 509
Check this Cocoapods Troubleshooting. You should do this:
$ gem uninstall cocoapods
$ gem install cocoapods
Upvotes: 2