2

我正在使用 Ubuntu 12.04 并使用 rvm 安装了 ruby​​。我最近将 ruby​​ 从 1.9.3 升级到 2.0.0。当我显示 ruby​​ 版本时,它显示 2.0.0。

$ ruby -v
ruby 2.0.0p247 (2013-06-27 revision 41674) [x86_64-linux]

当我尝试启动 solr 服务器时,它说缺少一个包。

$ RAILS_ENV=development rake sunspot:solr:start
Could not find unicode_utils-1.4.0 in any of the sources
Run `bundle install` to install missing gems.

然后当我尝试时bundle install,我收到以下错误。

$ bundle install
ERROR: RVM Ruby not used, run `rvm use 1.9.1` first.

列出已知的红宝石,我得到以下 MRI 红宝石。

$ rvm list known
# MRI Rubies
[ruby-]1.8.6[-p420]
[ruby-]1.8.7[-p374]
[ruby-]1.9.1[-p431]
[ruby-]1.9.2[-p320]
[ruby-]1.9.3[-p448]
[ruby-]2.0.0-p195
[ruby-]2.0.0[-p247]
[ruby-]2.0.0-head
ruby-head

正如我之前所说,我最近将 ruby​​ 更新到 2.0.0 并删除了所有其他的。之后,每次我重新启动计算机时,我都需要做bundle install或做其他先决条件来启动服务器。我确定捆绑包已安装,但某些 rvm ruby​​ 版本是原因。任何帮助,将不胜感激。

编辑1:我试过rvm use 2.0.0-p247了,下面是我得到的输出。

$ rvm use 2.0.0-p247

RVM is not a function, selecting rubies with 'rvm use ...' will not work.

You need to change your terminal emulator preferences to allow login shell.
Sometimes it is required to use `/bin/bash --login` as the command.
Please visit https://rvm.io/integration/gnome-terminal/ for a example.

我仍然得到同样的错误,当bundle install

4

4 回答 4

7

因为Ruby 2.0.0 它应该rvm use 2.0.0-p195按照您的rvm listthen start bundle install..
有时也需要运行/bin/bash --login

于 2013-08-27T04:32:26.033 回答
3

Run command as a login shell在终端首选项中设置并重新启动终端。现在一切都按预期工作,solr 服务器启动并且rails server工作正常。

不过还是谢谢大家帮忙。

于 2013-08-27T04:21:52.637 回答
0

我遇到了与 Ubuntu 14.04 上的问题标题相同的错误。

不过,Atlassian 上的这个 wiki 页面将我整理出来,现在可以正常工作: https ://kalamuna.atlassian.net/wiki/pages/viewpage.action?pageId=23134210

于 2014-10-27T18:11:46.627 回答
0

我有同样的错误,原来我没有安装bundler。在我这样做之后,我没有收到 rvm 错误。

因此,请确保您已安装捆绑程序。

于 2014-05-06T15:20:24.997 回答