chell
chell

Reputation: 7866

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

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?

Upvotes: 5

Views: 2740

Answers (2)

Colin R
Colin R

Reputation: 17751

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

Upvotes: 6

kn330
kn330

Reputation: 532

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

Upvotes: 17

Related Questions