Reputation: 7866
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
Reputation: 17751
You should be able to install by explicitly stating the desired patch level: rvm install 1.9.3-p194
Upvotes: 6
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