Manage Ruby environments with RVM
Let’s say you have multiple ruby project on your laptop: project A with Ruby 2.6 project B with Ruby 3.1 and dependencies in 5.x version project C with Ruby 3.1 too but dependencies in 8.x version What a mess ! RVM to the rescue ! RVM is a tool who will let you manage your ruby environments Install RVM $ curl -sSL https://get.rvm.io | bash Open a new terminal to be able to use it....