Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cant get ruby 1.9.3 to install get requested URL does not exist

Tags:

ruby

rvm

When running 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 have updated rvm to the latest and typed rvm reload

Any ideas?

like image 689
chell Avatar asked Jul 02 '12 05:07

chell


2 Answers

The URL should have been something like: ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.bz2

Try updating your rvm by

rvm get head

and then install 1.9.3 by

rvm install 1.9.3
like image 52
kn330 Avatar answered Oct 02 '22 21:10

kn330


You should be able to install by explicitly stating the desired patch level: rvm install 1.9.3-p194

like image 33
Colin R Avatar answered Oct 02 '22 21:10

Colin R