Hi hope there is someone out there that can help me, have been struggling with this for quite some time now. Im running Ubuntu 10 on the dev machine wich had ruby 1.8 on it, wich I removed. I installed Ruby 1.9.3 and rails3 using RVM and this tutorial http://ryanbigg.com/2010/12/ubuntu-ruby-rvm-rails-and-you/
when I type ruby -v I get
ruby 1.9.3p125 (2012-02-16 revision 34643) [i686-linux]
wich seems correct
I created a new test app using
rails new mysite
wich created the new app successfully then I
cd mysite
and created a gemset
rvm gemset create 'rails3'
then I used this inside the /mysite/ folder
rvm use 1.9.3@rails3 --rvmr
Using /usr/local/rvm/gems/ruby-1.9.3-p125 with gemset rails3
but the problem arises when i try to run it
root@server-pc:/var/www/mysite# rails s
-bash: /usr/bin/rails: /usr/bin/ruby1.8: bad interpreter: No such file or directory
EDIT1:
root@server-pc:/var/www/mysite# which ruby
/usr/local/rvm/rubies/ruby-1.9.3-p125/bin/ruby
rails new mysite2it shows the same error -->server@server-pc:/var/www$ rails new mysite2 -bash: /usr/bin/rails: /usr/bin/ruby1.8: bad interpreter: No such file or directory– Francois Mar 5 '12 at 9:59