unable to use cocoapods after updating

依然范特西╮ 提交于 2019-11-27 16:19:55

问题


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 the below error from terminal

/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.34.2/lib/cocoapods/user_interface/error_report.rb:13:in `report': incompatible character encodings: UTF-8 and ASCII-8BIT (Encoding::CompatibilityError)
    from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.34.2/lib/cocoapods/command.rb:61:in `report_error'
    from /Library/Ruby/Gems/2.0.0/gems/claide-0.7.0/lib/claide/command.rb:300:in `handle_exception'
    from /Library/Ruby/Gems/2.0.0/gems/claide-0.7.0/lib/claide/command.rb:274:in `rescue in run'
    from /Library/Ruby/Gems/2.0.0/gems/claide-0.7.0/lib/claide/command.rb:264:in `run'
    from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.34.2/lib/cocoapods/command.rb:48:in `run'
    from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.34.2/bin/pod:33:in `<top (required)>'
    from /usr/bin/pod:23:in `load'
    from /usr/bin/pod:23:in `<main>'

I have created a Podfile with the below content

platform :ios, ‘7.1’

pod 'AFNetworking', '~> 1.3.3’

Cocoapods worked perfectly before the update. any help is greatly appreciated.


回答1:


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'



回答2:


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



来源:https://stackoverflow.com/questions/26383635/unable-to-use-cocoapods-after-updating

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!