I am completely new to Ubuntu, I am trying to complete my installation of Ruby On Rails, so far I have installed both Ruby 1.9.3 and set it as the default and I installed Rails 3.2.8, when I open a new terminal it doesn't recognise my Rails install and I understand from looking for help that I need to set a path in a bashrc file.
2 problems I have is trying to understand what my path is and how I input this to the bashrc file(how can I find the file or do I use a command in the terminal to do set the path)
Here is the location of my Ruby and Rails install
andrew@andrew-laptop:~$ sudo updatedb
[sudo] password for andrew:
andrew@andrew-laptop:~$ locate rails|grep -e "bin/rails$"
/home/andrew/.rvm/gems/ruby-1.9.3-p286/bin/rails
/home/andrew/.rvm/gems/ruby-1.9.3-p286/gems/railties-3.2.8/bin/rails
I tried this but nothing changed
andrew@andrew-laptop:~$ export PATH=$PATH:/home/andrew/.rvm/gems/ruby-1.9.3-p286/bin
rvmcorrectly. Thervmenvironment should be loaded automatically by thebashrcfile upon login. For some reason it is not doing so in this case. There should be no need to mess with the path. You could usesource ~/.rvm/scripts/rvmto manually loadrvmin the new shell: rvm.io/rvm/install – Casper Oct 26 '12 at 23:20