ruby – RVM拒绝安装 – 卷曲SSL证书验证失败

我正在做一个比较干净的OS X安装.我有 Xcode,但删除它.

当我输入rvm install 1.9.3时,我得到:

max-macbook:~ max$rvm install 1.9.3 Fetching yaml-0.1.4.tar.gz to /Users/max/.rvm/archives   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed   0     0    0     0    0     0      0      0 --:--:-- --:--:--
--:--:--     0 curl: (60) SSL certificate problem,verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify Failed More details here: http://curl.haxx.se/docs/sslcerts.html

curl performs SSL certificate verification by default,using a "bundle"  of Certificate Authority (CA) public keys (CA certs). If the default  bundle file isn't adequate,you can specify an alternate file using the --cacert option. If this HTTPS server uses a certificate signed by a CA represented in  the bundle,the certificate verification probably Failed due to a  problem with the certificate (it might be expired,or the name might  not match the domain name in the URL). If you'd like to turn off curl's verification of the certificate,use  the -k (or --insecure) option. There was an error,please check /Users/max/.rvm/log//*.log. Next we'll try to fetch via http. Trying ftp:// URL instead.   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed   0     0    0     0    0     0      0      0 --:--:-- --:--:--
--:--:--     0 curl: (60) SSL certificate problem,please check /Users/max/.rvm/log//*.log Extracting yaml-0.1.4.tar.gz to /Users/max/.rvm/src Error running 'tar xmzf /Users/max/.rvm/archives/yaml-0.1.4.tar.gz -C /Users/max/.rvm/src ',please read /Users/max/.rvm/log/ruby-1.9.3-p125/yaml/extract.log /Users/max/.rvm/scripts/functions/pkg: line 52: cd: /Users/max/.rvm/src/yaml-0.1.4: No such file or directory Configuring yaml in /Users/max/.rvm/src/yaml-0.1.4. Error running ' ./configure
--prefix="/Users/max/.rvm/usr"  ',please read /Users/max/.rvm/log/ruby-1.9.3-p125/yaml/configure.log Compiling yaml in /Users/max/.rvm/src/yaml-0.1.4. Error running 'make ',please read /Users/max/.rvm/log/ruby-1.9.3-p125/yaml/make.log


Database file /Users/max/.rvm/config/packages does not exist.

/Users/max/.rvm/scripts/functions/build: line 28: --version: command not found Installing Ruby from source to: /Users/max/.rvm/rubies/ruby-1.9.3-p125,this may take a while depending on your cpu(s)...

ruby-1.9.3-p125 - #fetching  ruby-1.9.3-p125 - #downloading ruby-1.9.3-p125,this may take a while depending on your connection...

奇怪的事情似乎正在发生,就像我没有认系统一样.这是我第一次尝试安装Ruby(最终尝试到Rails),所以这个整个过程对我来说是很外来的.

我检查了几个日志的输出提及,大多数时候RVM正在寻找一个不存在的文件(但它说它已被下载)或一个不存在的程序(它试图运行./configure和得到一个“找不到文件”).

任何人都可以对此有所了解吗?我想让Rails尽快弄脏手.

解决方法

旧的RVM证书已经过期,我们正在迁移到较短的域 rvm.io,我已经更新了所有的资源和代码来指向新的域,只是更新RVM:
rvm get head # OR:
rvm get stable

还有更短的安装程序命令:

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

对于较旧的RVM版本,可能需要:

rvm get head
rvm reload
rvm get stable

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...