On 11 May 2011 16:58, Cássio <[email protected]> wrote: > Hello, after upgrading to ubuntu 11.04 im having this problem with > rvm. Im following this tutorial: > http://ruby.railstutorial.org/ruby-on-rails-tutorial-book#top > > Git is installed OK, when I follow the instructions on RVM website > aparently its OK too, but when I close my terminal and open a new one > and tipe ruby -v ou rvm -v for example I got a messenge "rvm is not > installed".
Did you edit .bashrc according to the instructions that should have been shown when you installed rvm? In particular editing the line with && return on the end. this is what I do (extracted from my install script) echo "now edit .bashrc" echo "change the line [ -z "$PS1" ] && return" echo "to" echo "if [[ -n "$PS1" ]]; then" echo "and add to the end" echo "fi" echo "[[ -s \"$HOME/.rvm/scripts/rvm\" ]] && source \"$HOME/.rvm/scripts/rvm\"" echo "where the backslashes in above should not be included in edit" echo "then save it and close and open the terminal" echo "then rvm notes should show release notes" Hopefully it makes sense. Colin > > What should I do? > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

