小编典典

RVM 不是一个函数,使用“rvm use ...”选择红宝石将不起作用

all

列出 ruby​​ 版本

console:~$ rvm list

rvm rubies

ruby-2.0.0-p481 [ i686 ]

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

尝试使用特定版本的 ruby

console:~$ rvm use 2.0.0

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.

阅读 136

收藏
2022-07-08

共1个答案

小编典典

您的控制台未作为登录 shell 运行,因此无法访问 rvm 功能。如果你运行的是 Ubuntu,你可以:

  1. 打开控制台
  2. 选择编辑 -> 配置文件首选项
  3. 选择选项卡:标题和命令
  4. 复选框“作为登录 shell 运行命令”
  5. 重启终端
2022-07-08