linux下编译安装curl

1.下载curl

 1 git clone https://github.com/curl/curl.git 

2.在curl目录下生成configure文件

 1 cd curl 2 ./buldconf 

3.编译生成curl

 1 ./configure 2 make 3 make install 

4.在src下生成了curl

 1 /curl -V 

如果出现下述命令:

1 curl 7.49.1-DEV (x86_64-unknown-linux-gnu) libcurl/7.49.1-DEV
2 Protocols: dict file ftp gopher http imap pop3 rtsp smtp telnet tftp
3 Features: IPv6 Largefile UnixSockets

curl就安装成功了。

相关文章:

  • 2021-11-20
  • 2021-04-12
  • 2021-12-17
  • 2021-11-22
  • 2021-10-14
  • 2021-05-15
  • 2021-07-15
  • 2021-04-17
猜你喜欢
  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
  • 2021-08-15
  • 2022-02-07
相关资源
相似解决方案