1

尝试在我的 OSx 上升级 RVM。我收到以下错误。

$ rvm get latest

Original installed RVM version:

rvm 1.2.9 by Wayne E. Seguin (wayneeseguin@gmail.com) [http://rvm.beginrescueend.com/]

rvm-<html>
% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                             Dload  Upload   Total   Spent    Left  Speed
100   172    0   172    0     0    210      0 --:--:-- --:--:-- --:--:--   304
ERROR:
.tar.gz downloaded does not match it's md5 checksum <html>
<head><title>400 Bad Request</title></head>
<body bgcolor="white">
<center><h1>400 Bad Request</h1></center>
<hr><center>nginx/1.0.8</center>
</body>
./html>
Aborting RVM Installation.

有什么问题?

4

1 回答 1

2

尝试:

rvm get head
rvm reload
rvm get stable

如果 `rvm get head 失败,请改用安装程序:

curl -L get.rvm.io | bash -s stable
rvm reload

rvm reload很重要,之前需要它,但现在 RVM 将自动重新加载。

另请注意,围绕1.4RVM 更改了.rvmrc信任机制,您将不得不再次信任所有项目......或使用不需要信任的新项目文件:https ://rvm.io/workflow/projects/#ruby-versions

于 2012-05-01T02:51:13.830 回答