在Ubuntu上安装rubygems的RVM错误

时间:2015-07-22 22:13:13

标签: ruby-on-rails ruby ubuntu rubygems rvm

我有一台ubuntu机器,我正在尝试按照本指南使用RVM安装rubygems:

当我运行命令rvm rubygems current甚至命令rvm rubygems latest时,我收到以下错误:

fl4m3ph03n1x: ~ $ rvm rubygems current
system - #downloading rubygems-2.4.8
system - #extracting rubygems-2.4.8.....
system - #removing old rubygems.........
$LANG was empty, setting up LANG=en_US.utf8, if it fails again try setting LANG to something sane and try again.
system - #installing rubygems-2.4.8.
Error running 'env GEM_HOME=/home/fl4m3ph03n1x/.rvm/gems/system@global GEM_PATH= /home/fl4m3ph03n1x/.rvm/rubies/system/bin/ruby -d /home/fl4m3ph03n1x/.rvm/src/rubygems-2.4.8/setup.rb --no-document',
showing last 15 lines of /home/fl4m3ph03n1x/.rvm/log/1437602750_system/rubygems.install.log
[2015-07-22 22:05:50] /home/fl4m3ph03n1x/.rvm/rubies/system/bin/ruby
current path: /home/fl4m3ph03n1x/.rvm/src/rubygems-2.4.8
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/fl4m3ph03n1x/.rvm/bin
command(7): env GEM_HOME=/home/fl4m3ph03n1x/.rvm/gems/system@global GEM_PATH= /home/fl4m3ph03n1x/.rvm/rubies/system/bin/ruby -d /home/fl4m3ph03n1x/.rvm/src/rubygems-2.4.8/setup.rb --no-document
env: /home/fl4m3ph03n1x/.rvm/rubies/system/bin/ruby: No such file or directory

起初我认为错误是由--no-document标志引起的,但在阅读并尝试this discussion on github后,没有任何变化。

我还检查了这个stackoverflow discussion但它似乎不适用于我的情况,因为我有一个全新的安装(没有手动安装的包也没有)。

总之,我尝试使用rvm get headrvm stable之类的命令,但似乎没有任何效果。

我错过了什么?这可能是某种许可的问题吗?

编辑:

这是rvm list

的结果
rvm rubies

   ruby-2.2.1 [ x86_64 ]

# Default ruby not set. Try 'rvm alias create default <ruby>'.

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

1 个答案:

答案 0 :(得分:0)

我安装了ruby,但事实证明它没有设置在rvm中。 为了解决这个问题,我尝试使用rvm use ruby --default,但我得到了臭名昭着的“rvm不是函数”错误。

要解决此问题,请先运行bash --login,然后再运行rvm use ruby --default

完成这些步骤后,您可以继续安装rubygems。