kmakarychev
kmakarychev

Reputation: 731

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?

Upvotes: 3

Views: 876

Answers (3)

kmakarychev
kmakarychev

Reputation: 731

I've solved my problem by myself:

:~$ gem update
:~$ gem pristine --all
:~$ gem install cocoapods
:~$ pod install

Upvotes: 6

NSMutableString
NSMutableString

Reputation: 10743

You should install the XCode Command line tools.

Upvotes: 1

laucel
laucel

Reputation: 509

Check this Cocoapods Troubleshooting. You should do this:

$ gem uninstall cocoapods
$ gem install cocoapods

Upvotes: 2

Related Questions