Can't get to work CocoaPods and Yosemite

后端 未结 6 1760
南笙
南笙 2020-12-19 05:24

I already tried this steps:

  1. Open Xcode 6 Open Preferences
  2. Click the Locations tab
  3. Change the Command Line Tools version to Xcode 6.0
6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-19 06:13

    I had to uninstall the entire dependency chain for cocoapods to get it to work.

    for i in `gem list --no-versions`; do gem uninstall -aIx $i; done
    

    see Uninstall all installed gems, in OSX?

提交回复
热议问题