使用 curl 时出现连接 TimeOutError

使用 curl 时出现连接 TimeOutError

我正在尝试访问它curl -fsSL https://raw.githubusercontent.com/m1guelpf/plz-cli/main/install.sh | sh -,但每次运行时都会收到以下错误

curl: (28) Failed to connect to raw.githubusercontent.com port 443: Connection timed out

我注意到当我之前尝试使用 curl 时也遇到了此错误,因此这不是特定于此的。

我正在使用 ubuntu 20.04 lts

答案1

https://florahuo.medium.com/failed-to-connect-to-raw-githubusercontent-com-port-443-connection-refused-how-to-fix-6a5920a188f4

您必须使用命令手动添加主机

sudo nano /etc/hosts

在我的例子中,我必须添加以下 IP 地址

185.199.108.133 raw.githubusercontent.com

并且成功了

我按照这篇文章中提到的步骤操作,解决了我的问题

相关内容