0

Trying like heck to install RVM on Mavericks OSX.

using

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

and getting back

    mkdir: /admin.rvm/src: Permission denied

Any help is appreciated... please....

1 Answers1

-2

The problem could be that you're not running the command with admin privileges. Try using sudo:

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

You'll then have to enter your password, and it should work. Good luck!

Also: http://xkcd.com/149/

Kites
  • 1,098
  • 9
  • 21
  • I'm sorry. This might help: http://stackoverflow.com/questions/5253643/cannot-install-rvm-permission-denied-in-usr-local-rvm It says not to use sudo, my bad. Good luck! – Kites Jul 27 '14 at 19:46