iphone - Not able to install or update cocoa pods after updating xcode 6 -


i have updated xcode 6. after not able update pod using terminal. when trying pod update "pod update", terminal stuck & not updating it. please check below image. trying update pods.

i have solved doing below steps..

  1. uninstall cocoapods
    $ sudo gem uninstall cocoapods
  2. uninstall xcodeproj
    $ sudo gem uninstall xcodeproj
  3. install xcodeproj
    $ sudo gem install xcodeproj
  4. install cocoapods
    $ sudo gem install cocoapods

run pod --version verify worked or not.

now cocoa pods updating successfully.


Comments

Popular posts from this blog

c++ - Do gcc's __float128 floating point numbers take the current rounding mode into account? -

java - the value of local variable is not used -