curl: (7) Failed to connect to raw.githubusercontent.com port 443 after 6 ms
时间: 2023-12-29 18:24:56 浏览: 287
解决ros安装时提示:‘raw.githubusercontent.com’出错的离线包
该错误通常表示curl无法连接到指定的主机和端口。这可能是由于网络连接问题或目标主机上的防火墙设置引起的。您可以尝试以下几种方法来解决此问题:
1. 检查您的网络连接是否正常,确保您可以访问互联网。
2. 检查您的防火墙设置,确保它们不会阻止curl连接到目标主机和端口。
3. 尝试使用不同的端口号,例如80或8080,而不是443。
4. 尝试使用IP地址而不是主机名,例如使用https://192.30.253.112替换https://raw.githubusercontent.com。
以下是一个示例命令,其中使用IP地址而不是主机名:
```shell
curl -sSL https://192.30.253.112/ros/rosdistro/master/ros.key
```
阅读全文