Reputation: 11
CocoaPods installed but not working.
You appear to have CocoaPods installed but it is not working.
This can happen if the version of Ruby that CocoaPods was installed with is different from the one being used to invoke it.
This can usually be fixed by re-installing CocoaPods.
Upvotes: 0
Views: 282
Reputation: 303
check pod --version
, if return something like this
1: from /Users/macbookpro/.rvm/rubies/ruby-2.7.8/lib/ruby/gems/2.7.0/gems/activesupport-7.1.0/lib/active_support/core_ext/array/conversions.rb:8:in
<top (required)>' /Users/macbookpro/.rvm/rubies/ruby-2.7.8/lib/ruby/gems/2.7.0/gems/activesupport-7.1.0/lib/active_support/core_ext/array/conversions.rb:108:in
class:Array': undefined method `deprecator' for ActiveSupport:Module (NoMethodError) Did you mean? deprecate_constant
there is incompatible active_support version. Try this answer
Upvotes: 0
Reputation: 146
You should try this
source: https://stackoverflow.com/a/66001187/19247433
Upvotes: 1