ruby & rvm - how to install a "p" version of ruby

ruby, rvm

Solution

Turned out to be a dash ! `$ rvm install 1.9.3-p327`

Problem

How can I use rvm to install a specific version of Ruby, e.g. `1.9.3p327` instead of the current `1.9.3p194` that I have. All the references and document are about the major version, e.g. `rvm install 1.9.3` but don't mention the 'p' minor version numbers. I tried ``` $ 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. ```

Original source