我如何使用rvm来安装特定版本的Ruby,例如,1.9.3p327而不是1.9.3p194我现有的.
所有参考文献和文件都是关于主要版本的,例如rvm install 1.9.3但不提及'p'次要版本号.
我试过了
$ rvm install 1.9.3p327
Unknown ruby interpreter version: '1.9.3p327'.
Could not detect ruby version/name for installation, please be more specific.
$ ruby -v
ruby 1.9.3p194 (2012-04-20 revision 35410) [i686-linux]
$ rvm install '1.9.3p327'
Unknown ruby interpreter version: '1.9.3p327'.
Could not detect ruby version/name for installation, please be more specific.
Run Code Online (Sandbox Code Playgroud)