Cómo instalar cURL en OSX con brew

10

¿Cómo puedo obtener la versión más reciente de cURL en lugar de la versión 7.24 que ofrece Apple?

user:~ kevinsimper$ curl --version
curl 7.31.0 (x86_64-apple-darwin12.4.0) libcurl/7.31.0 OpenSSL/0.9.8x zlib/1.2.5
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smtp smtps telnet tftp 
Features: IPv6 Largefile NTLM NTLM_WB SSL libz 

Cuando instalo con Brew, se me notifica que es solo para barriles y si lo hago

brew link curl --force

la versión es aún 7.24, pero los protocolos se han actualizado.

Kuser:~ kevinsimper$ curl --version
curl 7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 OpenSSL/0.9.8x zlib/1.2.5
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smtp smtps telnet tftp 
Features: AsynchDNS GSS-Negotiate IPv6 Largefile NTLM NTLM_WB SSL libz 
user:~ kevinsimper$ which curl
/usr/bin/curl

Si luego elimino el rizo "apple", la función no es ejecutable.

user:~ kevinsimper$ curl --version
curl 7.31.0 (x86_64-apple-darwin12.4.0) libcurl/7.31.0 OpenSSL/0.9.8x zlib/1.2.5
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smtp smtps telnet tftp 
Features: IPv6 Largefile NTLM NTLM_WB SSL libz 
user:~ kevinsimper$ brew install postgresql
==> Installing postgresql dependency: ossp-uuid
==> Downloading ftp://ftp.ossp.org/pkg/lib/uuid/uuid-1.6.2.tar.gz
Error: /usr/bin/curl is not executable
    
pregunta Kevin Simper 08.07.2013 - 12:50

1 respuesta

5

Agregue export PATH=/usr/local/bin:$PATH a su .bashrc , por ejemplo, para usar el contenedor instalado con Homebrew.

    
respondido por el Matthieu Riegler 08.07.2013 - 13:27

Lea otras preguntas en las etiquetas