Curl

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

  • June 14, 2013

在我的系統 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,以使其與讚助人一起使用。將 curl 從 7.18.0 更新到更高版本(例如 7.19 或 7.20)的過程是什麼?

您可以嘗試從 ubuntu 軟體包儲存庫下載 curl .deb:http ://packages.ubuntu.com/lucid/curl並使用 dpkg 手動安裝:

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

如果幸運的話,要求並沒有太大變化,並且可以毫無問題地安裝。

引用自:https://serverfault.com/questions/515803