Problem installing RVM on mac

I am trying to set up a local Rails environment and am having problems installing RVM.

Here is the error I get:

$ bash < <( curl http://rvm.io/releases/rvm-install-head )
% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                Dload  Upload   Total   Spent    Left  Speed
100   185  100   185    0     0    136      0  0:00:01  0:00:01 --:--:--     0
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>

The contents of my /usr/local folder are as follows:
bin          man
etc          mysql
hermes       mysql-5.1.56-osx10.5-x86_64
include      rvm
info         share
lib

I have some knowledge of what is going on here, but help in what I am missing, or if I am approaching it wrongly, would be very grateful.

+5
source share
4 answers

Instead, use the new RVM installer for custom and / or root installations, the default is head.

user$ curl -L https://get.rvm.io | bash

Alternatively, you can install a stable release as follows:

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

RTFM stuff is located at https://rvm.io/rvm/install and https://rvm.io/rvm/basics

+7

Mac OS X 10.5.8

bash < < (curl -Lks https://rvm.io/install/rvm), .

-s . .

, , RVM. , ON A MAC.

, , ? .

+7

mac 10.5  $ echo insecure → ~/.curlrc  $ bash -s stable < < (curl -Lks --insecure https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) , - .

+1

-s .

bash < <(curl -s https://rvm.io/releases/rvm-install-head )
-1

All Articles