Cant get ruby ​​1.9.3 to set the requested URL does not exist

When executing the following command:

rvm install 1.9.3

I get the following output:

Error: The requested URL does not exist: ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-.tar.bz2

I updated rvm to the latest and printed rvm reload

Any ideas?

+5
source share
2 answers

You should be able to install by explicitly indicating the level of fix required: rvm install 1.9.3-p194

+6
source

The URL should be something like this: ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3- P194 .tar.bz2

Try updating your rvm

rvm get head

and then set 1.9.3 to

rvm install 1.9.3
+17
source

All Articles