mac OSX Lion Homebrew install curl (77) -
curl: (77) error setting certificate verify locations:
cafile: /usr/share/ssl/certs/ca-bubdle.crt
capath: none
when tried download homebrew, got error. have looked @ posts similar errors this, none of fixes them solved issue , have not seen else issue on mac osx lion. please me?
unfortunately curl-ca-bundle
not exist anymore in homebrew.
i followed suggest @ https://gist.github.com/1stvamp/2158128 does:
mkdir /tmp/curl-ca-bundle cd /tmp/curl-ca-bundle wget http://curl.haxx.se/download/curl-7.22.0.tar.bz2 tar xzf curl-7.22.0.tar.bz2 cd curl-7.22.0/lib/
check if directory /usr/share/curl
exists.
if so, make backup of existing ca-bundle.crt
file
sudo mv /usr/share/curl/ca-bundle.crt /usr/share/curl/ca-bundle.crt.original
if not, create via: mkdir /usr/share/curl
.
after, move ca-bundle.crt file directory:
sudo mv ca-bundle.crt /usr/share/curl/ca-bundle.crt
Comments
Post a Comment