trouble installing RVM on a mac

爷,独闯天下 提交于 2019-12-05 10:49:50
Wayne E. Seguin

Use the new RVM installer for either user and/or root installs instead, it defaults to head.

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

Alternatively you can install the stable release like this:

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

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

noogrub

On my Mac OS X 10.5.8 I had to use

bash < <(curl -Lks https://rvm.io/install/rvm) or it failed silently.

The -s switch by itself absolutely does not work. Fails silently.

It's annoying when people answer with the generic info anyone can find at the RVM site. Please try to actually answer this when you've actually succeeded in installing ON A MAC.

Matt if my fix does not work for you then would you let us know? Thanks.

On mac 10.5 I had to run this command $ echo insecure >> ~/.curlrc followed by this $ bash -s stable < <(curl -Lks --insecure https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) I hope this is helpful to someone out there.

Doon

You are missing the -s option to curl.

bash < <(curl -s https://rvm.io/releases/rvm-install-head )
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!