4

我刚刚在一台新的 Linux Mint 机器上用 rails 重新安装了 rvm
我可以看到 rails 安装在我的 gems 中

gem query --local

*** LOCAL GEMS ***

...other stuff ...
rails (3.2.8)
...other stuff ...

但如果我尝试从控制台运行,我看不到它

$ rails -v
The program 'rails' is currently not installed.  You can install it by typing:
sudo apt-get install rails

这是我的 PATH 变量

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/home/motta/.rvm/bin

我应该在路径中添加什么以使导轨可用?谢谢你

更新:这是 rvm list 的输出

rvm rubies

=* ruby-1.9.3-p286 [ x86_64 ]

# => - current
# =* - current && default
#  * - default

安装已按照 rvm 说明
https://rvm.io/rvm/install/

已解决: 当我完成安装时,我发现 rvm 用这一行修改了我的 /home/user/.bashrc 文件

PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting

因此我认为不再需要以下一个,事实并非如此

[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # This loads RVM into a shell session.

将上述内容添加到 .bashrc 解决了我的问题

4

2 回答 2

1

尝试按照此步骤安装 RVM,然后安装 rails

http://rails.vandenabee.com/blog/2011/11/26/installing-ruby-and-rails-with-rvm-on-ubuntu-11-dot-10/

或者

https://rvm.io/rvm/install/

于 2012-10-17T10:43:42.123 回答
0

您的 PATH 显然设置错误,请确保您使用 ruby​​:

rvm use 1.9.3

要使此持久性为下一个会话设置默认值:

rvm use 1.9.3 --default        #OR:
rvm alias create default 1.9.3

最后,您可能需要启用登录 shell 才能使其工作(关于此主题的答案已经很少)。

于 2012-10-17T11:23:27.890 回答