我创建了一个Rails项目但是当我从项目目录中发出诸如rails s或rails c之类的命令时,我得到:
The program 'rails' can be found in the following packages:
* ruby-railties-3.2
* ruby-railties-4.0
Try: sudo apt-get install <selected package>
我是否需要设置路径变量?请帮忙!
答案 0 :(得分:0)
您需要使用bundler在gemfile中安装gem。从应用的根目录中键入bundle
。接下来,使用bundler运行命令,例如bundle exec rails c
或bundle exec rails s
。