libcurl中不支持或禁用协议“ https”-Ubuntu 16.04

时间:2019-12-16 14:33:04

标签: curl https docker-compose ubuntu-16.04

我正在尝试在Ubuntu 16.04虚拟机上安装docker-compose,但是出现以下错误:

(1) Protocol "https" not supported or disabled in libcurl

我要运行以安装docker-compose的命令:

sudo curl -L "https://github.com/docker/compose/releases/download/1.25.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

如果我运行curl --version我会得到:

curl 7.67.0 (x86_64-pc-linux-gnu) libcurl/7.67.0
Release-Date: 2019-11-06
Protocols: dict file ftp gopher http imap pop3 rtsp smtp telnet tftp
Features: AsynchDNS IPv6 Largefile UnixSockets

有人可以帮我这个忙吗?我真的很感激。

1 个答案:

答案 0 :(得分:0)

在卷曲工具中似乎出现了问题。但是,我认为您可以尝试使用HTTP而不是HTTPS。您是否尝试在没有安全协议的情况下运行curl命令?例如:

sudo curl -L "http://github.com/docker/compose/releases/download/1.25.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose