Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The program 'rails' can be found in the following packages - issue with some app and RVM?

I just downloaded an app code from github and when I am trying to run the command rails s, I am getting this error -

The program 'rails' can be found in the following packages:
 * rails
 * ruby-railties-3.2

This is specific to this app only, can someone tell me how to fix this ? I am using RVM

like image 456
iCyborg Avatar asked Jan 03 '13 08:01

iCyborg


1 Answers

In case anyone else has this problem, but the above doesn't work. Try running:

/bin/bash --login

then run

rvm use 2.0.0 #or whatever your version number is...
like image 148
SnareChops Avatar answered Oct 17 '22 23:10

SnareChops