linux下编译安装curl
2018-06-24 本文已影响0人
风静花犹落
1)下载curl包(可以在这个网站上找最新的版本 http://curl.haxx.se/download/)
wget https://curl.haxx.se/download/curl-7.55.1.tar.gz
2)解压
tar -xzvf curl-7.55.1.tar.gz
3 ) 编译
1 cd curl-7.55.1
2 ./buldconf
3 ./configure
4 make && make install
4)检测
使用 curl --version(或 curl -V)
检查是否更新成功
curl 7.60.0 (x86_64-pc-linux-gnu) libcurl/7.60.0
Release-Date: 2018-05-16
Protocols: dict file ftp gopher http imap pop3 rtsp smtp telnet tftp
Features: AsynchDNS IPv6 Largefile UnixSockets
如果出现以上信息,说明curl就安装成功了。