如何在 ubuntu 8.04 上更新 curl 版本?

如何在 ubuntu 8.04 上更新 curl 版本?

在我的系统 8.04 上,安装了 curl 7.18.0:

curl --version显示:

curl 7.18.0 (i486-pc-linux-gnu) libcurl/7.18.0 OpenSSL/0.9.8g zlib/1.2.3.3 libidn/1.1
Protocols: tftp ftp telnet dict ldap ldaps http file https ftps 
Features: GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz 

根据https://github.com/toland/patron/issues/25,我需要安装更高版本的 curl,例如 7.19.4,以便使其与 patron 配合使用。将 curl 从 7.18.0 更新到更高版本(例如 7.19 或 7.20)的过程是什么?

答案1

您可以尝试从 ubuntu 软件包存储库下载 curl .deb:http://packages.ubuntu.com/lucid/curl并使用 dpkg 手动安装:

dpkg --install /path/to/curl.deb

如果您很幸运,要求不会发生太大变化,安装将不会出现问题。

相关内容