如何解决 ubuntu 中的错误消息“curl: (1) Protocol “http” not support or disabled in libcurl”?我已经尝试了很多解决方案

问题描述 投票:0回答:1

我想在 ubuntu 上运行 Nexus 代码,当我运行代码时:

curl --proto "=https" --tlsv1.3 sh.rustup.rs -sSf |嘘

它给了我这个错误消息:

“curl:(1) libcurl 中不支持或禁用协议“http””

请问我该怎么办?我需要尽快让这个节点运行。

linux
1个回答
0
投票

只需使用

curl http://sh.rustup.sh | sh

您强制使用 https 协议,但服务器只使用 http

© www.soinside.com 2019 - 2024. All rights reserved.