I've got a strange error when I try to run this rvm install script (newly installed ubuntu 11.10):

bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)

I got this:

mkdir: cannot create directory: ”/usr/share/ruby-rvm/src”

The problem is, I want to install a per-user rvm to my $HOME, and dont understand what this script wants with /usr/share/ruby-rvm.

I need my rvm at $HOME/.rvm directory.

I've got no env variable with $rvm_ prefix, I checked.

link|improve this question
3  
There was an unused package caused the problem. Solution: > $ sudo apt-get --purge remove ruby-rvm – Pengő Dzsó Dec 6 '11 at 16:20
Please add your comment as answer and mark it as accepted. It'll help your accept rate and the future reders of this question. – lucapette Dec 6 '11 at 16:55
I need to wait 8 hrs for that – Pengő Dzsó Dec 6 '11 at 17:01
looks like zach got to it first – rogerdpack Feb 10 at 19:49
feedback

2 Answers

up vote 26 down vote accepted

You may have installed the debian packaged rvm.you can clean it first with:
$ sudo apt-get --purge remove ruby-rvm

link|improve this answer
1  
Thanks! This fixed the same problem for me on Mint Linux. – tr9sh Feb 1 at 16:37
1  
Also may need to close and re-open your terminal window, if you have one open. – rogerdpack Feb 10 at 19:49
@rogerdpack - thanks for that tip! – David Oneill Feb 16 at 5:27
feedback

You should follow these instruction on this blog and enjoying

 http://ryanbigg.com/2010/12/ubuntu-ruby-rvm-rails-and-you/
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.