Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

ruby

rvm

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.
like image 211
Michael Durrant Avatar asked Feb 04 '13 19:02

Michael Durrant


People also ask

What does ruby symbolize?

Rubies are often associated with wealth and prosperity. Many ancient crowns were decorated with rubies, because they represented good fortune and courage. The ruby's deep red color also has ties to love, passion, and raw emotion.

What is special about ruby?

Ruby gets its red coloring from trace amounts of chromium. Ruby measures 9 on the Mohs Scale of Hardness, second only to diamond and matched with sapphire. This makes ruby an extremely hard and durable gemstone.

Why are rubies so rare?

Rubies are one of the rarest gemstones. The rarest rubies come from Burma (Myanmar), due to their high quality and exceptional color. Good quality rubies larger than one carat are also extremely rare—and expensive.

Are rubies expensive?

Fine-quality rubies are some of the most expensive gemstones, with record ruby prices over $1,000,000 per carat. However, rubies are also subjected to more treatments than almost any other gem. One of the most popular traditional jewelry stones, ruby is exceptionally durable.


1 Answers

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

like image 141
Michael Durrant Avatar answered Oct 12 '22 12:10

Michael Durrant