真的,我不知道发生了什么。对不起,如果这个问题如此 NOOB,但我找不到这个问题的解决方案。
-bash:rvm:找不到命令
我试过这个
curl -L https://get.rvm.io | bash -s -- --version 最新
但我仍然不需要查看使用 simplecov 的 ruby 版本,因为它不适用于 1.9 的旧版本
真的,我不知道发生了什么。对不起,如果这个问题如此 NOOB,但我找不到这个问题的解决方案。
-bash:rvm:找不到命令
我试过这个
curl -L https://get.rvm.io | bash -s -- --version 最新
但我仍然不需要查看使用 simplecov 的 ruby 版本,因为它不适用于 1.9 的旧版本
这可能是因为终端没有加载 rvm shell 配置。
尝试从您的终端执行以下操作:
$ source ~/.rvm/scripts/rvm
然后
$ type rvm | head -n 1
如果输出是:
rvm is a function
您可能需要将“source ~/.rvm/scripts/rvm”添加到您的 ~/.bash_profile 文件中
您需要阅读安装 RVM 时显示的所有文本:
rm -rf ~/.rvm
curl -L https://get.rvm.io | bash -s stable
跑完之后sudo curl -L https://get.rvm.io | bash -s stable --ruby
您需要关闭终端,然后再次打开!
这对我有用:
rm -rf ~/.rvm
curl -L https://get.rvm.io | bash -s stable
source /etc/profile
worked for me.
For a long-term solution, you should add this to your ~/.profile
file:
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
to simply load rvm into a single terminal, use
source "$HOME/.rvm/scripts/rvm"
supposedly this call is more cross-platform:
. "$HOME/.rvm/scripts/rvm"
Close and restart terminal after installing RVM — gets me EVERY TIME.
To start using RVM, you'll need to enter source /Users/yourusername/.rvm/scripts/rvm
into your terminal (of course, insert your real username in place of yourusername
).
As suggested by @mpapis, Do this first
$ rm -rf ~/.rvm
$ curl -L https://get.rvm.io | bash -s stable
Then, as suggested by @peterpengnz, do this and you should be fine with RVM cmd issues
$ source ~/.rvm/scripts/rvm