Hi, I am trying to install RVM on Mac OsX v 10.4.11.
In terminal I type:
curl -L get.rvm.io | bash -s stable
I get this message:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 185 100 185 0 0 387 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 performs SSL certificate verification by default, using a "bundle"
of Certificate Authority (CA) public keys (CA certs). The default
bundle is named curl-ca-bundle.crt; 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 verification of the certificate, use
the -k (or --insecure) option.
I found similar questions about StackOverflow, for example, a Curl certificate error when using RVM to install Ruby 1.9.2 , but a) this is a problem with installing RVM in the first place, and not using RVM to install a new version of Ruby and, more importantly, b) the best answers to such questions suggest that this is an error that occurs when accessing the old RVM site, i.e. rvm.beginrescueend.com. The solution is to use
curl -L get.rvm.io | bash -s stable
which I use, but which generates this error message for me, and therefore why I am stuck. Any help would be greatly appreciated, thanks
Phillip