Decision
Make the rvm list known . If it does not display the ruby version that it runs, it can be installed from a local source. Some versions of Ruby are not supported and will not be listed, and rvm may create the wrong URL.
For example, installing ruby-1.9.3-p484 is as follows:
First upload the ruby archive to the RVM archives folder:
cd ~/.rvm/archives; wget http://cache.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p484.tar.bz2
Then set the following flags:
rvm install 1.9.3-p484 --verify-downloads 2 --disable-binary
Explanation
I had to do it so as not to do it: rvm install ruby-1.9.3p484
Since the above command generated this error:
The requested URL does not exist (22): ' https://cache.ruby-lang.org/pub/ruby/./ruby-1.9.3p484.tar.bz2 ' Check backup: https: //ftp.ruby-lang .org / pub / ruby /./ ruby-1.9.3p484.tar.bz2 Unable to find the backup URL, try increasing the timeout with:
echo "export rvm_max_time_flag = 20" → ~ / .rvmrc
Error getting ruby interpreter. Complete installation.
Also see this SO RVM install ruby answer from local source
source share