Shnarf
Shnarf

Reputation: 39

RVM upgrade 2.5.0 issues

Hello I am currently using RVM version 1.29.3 and Ruby 2.4.2 and I am unable to upgrade to 2.4.3 or 2.5.0. When I run rvm upgrade 2.5.0, output is Are you sure you wish to upgrade from ruby-2.4.2 to ruby-2.4.1? (Y/n): which is obviously not what I want.

Upvotes: 2

Views: 3615

Answers (1)

Keith Bennett
Keith Bennett

Reputation: 4970

Often, new releases of Ruby are not available on stable versions of rvm, and if you want them you need to install the head. As previously stated, you can do rvm get head. New windows will use the new version of rvm but if you use a terminal window that was loaded before installing the new version of rvm, you'll need to do a rvm reload.

Then you should be able to rvm install 2.5.

(Do not then do rvm get stable because it will overwrite the head version.)

Upvotes: 8

Related Questions