Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LoadError when pod install

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?

like image 722
kmakarychev Avatar asked Sep 18 '26 04:09

kmakarychev


2 Answers

I've solved my problem by myself:

:~$ gem update
:~$ gem pristine --all
:~$ gem install cocoapods
:~$ pod install
like image 74
kmakarychev Avatar answered Sep 20 '26 20:09

kmakarychev


Check this Cocoapods Troubleshooting. You should do this:

$ gem uninstall cocoapods
$ gem install cocoapods
like image 35
laucel Avatar answered Sep 20 '26 21:09

laucel