如何在Lion上安装RVM,我在终端
中尝试此命令curl -s https://rvm.beginrescueend.com/install/rvm
执行此命令后,它在终端中提供了大量文本,文本以此语句结尾
chmod +x ./scripts/install
# Now we run the RVM installer.
./scripts/install ${flags[*]} --prefix "$rvm_prefix" --path "$rvm_path"
完成执行后,我尝试了rvm命令,但它找不到错误命令
答案 0 :(得分:2)
您是否仅在终端中运行curl -s https://rvm.beginrescueend.com/install/rvm
?这只显示脚本的内容。
如果你想安装它,你需要运行这样的东西(假设你正在使用bash):
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
答案 1 :(得分:0)
复制自: http://ruby.about.com/od/rubyversionmanager/ss/Installing-Ruby-On-Snow-Leopard-With-Rvm_6.htm
现在已经安装了RVM脚本,您需要每次都加载它们 开始一个新的Bash会话的时间。这是通过添加一条线来实现的 到〜/ .bash_profile文件的末尾。您可以添加此行 您最喜欢的文本编辑器,或使用cat命令。刚打 键入行后按Ctrl-D,它会将该行写入 文件并返回bash提示符。
$ cat >>~/.bash_profile
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"