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

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

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

谢谢

答案1

经过几个小时尝试各种方法后,我终于解决了这个问题!以下是我所做的:

下载自http://curl.haxx.se/download.html

tar -xzf curl-***.tar.gz
cd curl-*.*.*
./configure --with-ssl
make
sudo make install

答案2

官方称 cURL 不支持 HTTPS。上面的答案对我不起作用,已经尝试使用 --with-ssl 命令下载添加了新版本,但没有成功,这个答案解决了我的问题。

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

  • 内容链接 -

我仍然不知道为什么使用 Aptitude 会安装一个不支持 HTTPS 的版本,但从头开始构建却能解决问题:

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

现在 curl -V 产生

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

相关内容