无法使用 curl 安装 rvm(https 协议问题)

无法使用 curl 安装 rvm(https 协议问题)

我遇到了以下问题。使用

\curl -L https://get.rvm.io | bash -s stable --ruby 

下载 rvm 时出现错误:

curl: (1) Protocol https not supported or disabled in libcurl

我不确定如何修复它,有什么想法吗?如果您需要更多信息,我非常乐意提供。

@Edit: 更多信息

apt-cache policy curl 

curl: Installed: 7.37.1-1ubuntu3.4 Candidate: 7.37.1-1ubuntu3.4 
Version table: *** 7.37.1-1ubuntu3.4 0 500 
http://pl.archive.ubuntu.com/ubuntu/ utopic-updates/main amd64 
Packages 500 http://security.ubuntu.com/ubuntu/ utopic-security/main amd64 
Packages 100 /var/lib/dpkg/status 7.37.1-1ubuntu3 0 
500 http://pl.archive.ubuntu.com/ubuntu/ utopic/main amd64 Packages

which curl 

/usr/local/bin/curl

答案1

您已安装 Ubuntu 的 curl,并在 中安装了另一个 curl /usr/local。请指定获取 Ubuntu curl 的完整路径 ( /usr/bin/curl),或将PATH脚本的 更改为跳过/usr/local/bin

相关内容