Reputation: 21
When I enter the 'sudo gem install cocoapods' command, I see 'Error installing cocoapods: The last version of activesupport (>= 5.0, < 8) to support your Ruby & RubyGems was 6.1.7.6. Try installing it with gem install activesupport -v 6.1.7.6
and then running the current command again activesupport requires Ruby version >= 2.7.0. The current ruby version is 2.6.10.210.' error pops up, I couldn't find the solution
I tried updating Ruby
Upvotes: 0
Views: 212
Reputation: 76
You can resolve this issue by upgrading your Ruby version. Here's how you can do it using rbenv, a popular Ruby version management tool:
First, update rbenv and the ruby-build plugin:
brew update
brew upgrade rbenv ruby-build
Install the latest stable version of Ruby:
rbenv install 3.3.0
Set the newly installed version as the global default:
rbenv global 3.3.0
Verify that the correct version is being used:
ruby -v
After upgrading Ruby, you should be able to install cocoapods
without encountering the activesupport error.
Upvotes: 0