unable to use cocoapods after updating

前端 未结 2 1514
别那么骄傲
别那么骄傲 2020-12-16 02:23

I have updates Ruby , Gems and Cocoapods on my mac OSX 10.9.5, after the update I am unable to execute the command

pod install

I\'m getting

相关标签:
2条回答
  • 2020-12-16 02:31

    This character " ‘ " is incomatible with cocoapods in first line. You should use this instead " ' ". So your podfile should be like this:

    platform :ios, '7.1'
    pod 'AFNetworking', '~> 2.4'
    
    0 讨论(0)
  • 2020-12-16 02:41

    The problem was the use of incorrect quotes around the iOS version. Make sure all your quotes are ' and not ‘ or ’.

    0 讨论(0)
提交回复
热议问题