简体   繁体   中英

rvm determine and install latest version of ruby

So far I only know how to do commands like

rvm 2.0.0

Fortunately Google tells me

The current stable version is 2.0.0-p247.

But shouldn't I be able to use rvm to do that step for me? I can't figure out how to just tell rvm to install the latest version of ruby, without manually specifying it.

it is enough to:

rvm get stable
rvm use ruby --install --default 

it will update rvm, check for latest ruby - install it if missing - and set as default

I don't know of a way to have rvm just install the latest version automatically, but here's three simple commands using just rvm:

rvm reload
rvm list known # This will show all the available versions, including the latest
rvm install <latest_version> # Replace <latest_version> with the latest shown by the last command

rvm install ruby-head应安装上一个已知版本。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM