我正在尝试在Ubuntu 11.04上安装Rails环境。当我启动命令rvm install 1.9.2——with-openssl-dir=/usr/local时,收到以下错误:
curl : (1) Protocol https not supported or disabled in libcurl
如何解决这个问题?
我正在尝试在Ubuntu 11.04上安装Rails环境。当我启动命令rvm install 1.9.2——with-openssl-dir=/usr/local时,收到以下错误:
curl : (1) Protocol https not supported or disabled in libcurl
如何解决这个问题?
当前回答
在https网站上使用curl时得到了相同的错误
curl https://api.dis...
正如ganesh指出的,这是因为我的curl版本没有启用SSL。我回去下载了带有SSL的版本,效果很好。
其他回答
用flag -with-darwinssl解决了这个问题
转到带有curl源代码的文件夹
请在这里下载https://curl.haxx.se/download.html
sudo ./configure --with-darwinssl
make
make install
重新启动控制台就完成了!
在url中指定协议可能会解决您的问题。
我有一个类似的问题(当使用curl php客户端):
我传递的是domain.com而不是sftp://domain.com,这导致了这个令人困惑的错误:
libcurl中不支持或禁用协议“http”,花费了0秒。
看起来已经有这么多答案了,但我面临的问题是双引号。 这两者之间有区别:
“
and
"
将第一个双引号改为第二个对我有用,下面是示例curl:
curl -X PUT -u xxx:xxx -T test.txt "https://test.com/test/test.txt"
我遇到了这个问题,原来在https之前有一个空格,导致了这个问题。“Https://”vs“Https://”
我在为ruby安装rvm时遇到了同样的问题。 找到解决方案: 在root的下载文件夹中提取curl (tar)后。
cd /root/Downloads/curl # step-1
./configure --with-ssl # step-2
make # step-3
make install # step-4 (if not root, use sudo before command)
源