Install RVM on Ubuntu 10.10 Error

I am trying to do this:

bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-head )

but i keep getting this error

bash: line 1: html: No such file or directory
bash: line 2: syntax error near unexpected token `<'
'ash: line 2: `<head><title>301 Moved Permanently</title></head>

What's happening?

+5
source share
4 answers

The URL for installing RVM has recently been changed to use HTTPS, so now the command:

\curl -L https://get.rvm.io | bash -s stable

However, you should always read the latest RVM installation documents for the current command.

+10
source

According to https://rvm.io/rvm/install , this is not a valid URL. It should be...

\curl -L https://get.rvm.io | bash
+2
source

rvm osx. , , , "rvm" https://rvm.io/install/rvm , : sh rvm

0

If you are https://get.rvm.io , you will be redirected to the rvm-installer link https://raw.githubusercontent.com/wayneeseguin/rvm/master/binscripts/rvm-installer , then you can replace the curl command with:

\curl -L https://raw.githubusercontent.com/wayneeseguin/rvm/master/binscripts/rvm-installer | bash -s stable
0
source

All Articles