0

我的 Ruby on Rails 安装有问题。我用 RVM 安装了 Ruby,然后用来gem install rails安装 Rails。该rails命令在终端中工作,但如果我关闭终端并rails再次尝试使用它会给我一个错误:

grega@spaceship:~$ rails -v
The program 'rails' can be found in the following packages:
 * rails
 * ruby-railties-3.2
Try: sudo apt-get install <selected package>

使用rvm -vruby -v工作。

grega@spaceship:~$ rvm -v

rvm 1.18.21 (stable) by Wayne E. Seguin <wayneeseguin@gmail.com>, Michal Papis <mpapis@gmail.com> [https://rvm.io/]

grega@spaceship:~$ ruby -v
ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux]

为了让rails再次工作,我必须执行source .rvm/scripts/rvm

RVM 被添加到 .bashrc 文件中:PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting

我是否忘记了一些东西,这会阻止我在启动时使用 Rails?

4

1 回答 1

2

将此添加到您的 bashrc :

[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
于 2013-03-25T12:42:40.270 回答