curl:(1)libcurl不支持或禁用协议https


10

我正在尝试使用安装框架,curl但始终收到此烦人的错误消息curl: (1) Protocol https not supported or disabled in libcurl。有谁知道如何解决这一问题?我叠!

谢谢


编辑您的问题并在apt-cache policy curl libcurl3
AB AB

您使用的是官方的cURL还是手动编译的?默认情况下cURL,官方版本中启用了https支持。
Aizuddin Zali 2015年

Answers:



1

官方cURL不支持HTTPS。上面的答案对我不起作用,已经尝试下载添加了--with-ssl命令的新版本,而且还不走运,这个答案解决了我的问题。

https://stackoverflow.com/a/28782797/8146700

  • 内容链接-

我仍然不知道为什么使用Aptitude安装一个不支持HTTPS的版本,但是从头开始构建就可以了:

git clone https://github.com/bagder/curl.git sudo apt-get build-dep curl cd curl ./buildconf ./configure进行sudo make install

现在curl -V产生

协议:dict文件ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp smb smbs smtp smtps telnet tftp功能:IDN IPv6大文件NTLM NTLM_WB SSL libz TLS-SRP UnixSockets


通常,最好在此处包含答案中遵循的主要步骤,并提供对您有用的答案的链接-以防万一该链接失效。
sempaiscuba
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.