码迷,mamicode.com
首页 > 其他好文 > 详细

MAC OS安装wget

时间:2014-05-21 23:41:11      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:des   c   tar   http   a   get   

 

MAC下没有wget工具,不习惯curl,使用起来还是很不方便的。
下载了一个wget源码吧,编译安装。
sudo curl -O http://ftp.gnu.org/gnu/wget/wget-1.15.tar.gz
sudo tar zxvf wget-1.15.tar.gz
cd wget-1.15
sudo ./configure


提示错误
configure: error: --with-ssl=gnutls was given, but GNUTLS is not available.


Google了一下,发现
http://coolestguidesontheplanet.com/install-and-configure-wget-on-os-x/
wget needs to have some type of SSL support GNUTLS is most probably not
available on your OS X system – if so use OpenSSL in the configure as
an alternative use so re-run the configure with an SSL flag:


于是重新编译
sudo ./configure --with-ssl=openssl
sudo make
sudo make install


查看安装情况
wget --version
GNU Wget 1.15 built on darwin13.1.0.
成功安装到默认 /usr/local/bin/wget


百度一下之后,发现早已经很多人发现了这个问题。而且还有使用brew安装的方案。

MAC OS安装wget,布布扣,bubuko.com

MAC OS安装wget

标签:des   c   tar   http   a   get   

原文地址:http://www.cnblogs.com/zzugyl/p/3739047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!