亲测解决Bundler HTTPError Could not fetch specs from

这个问题源于ruby的网站连接不上,解决方法是修改网页地址或者网络配置。

环境

win11 + ruby

问题原文

c 复制代码
Retrying fetcher due to error (2/4): Bundler::HTTPError Could not fetch specs from 
https://rubygems.org/ due to underlying error <IO::TimeoutError: Failed to open TCP connection to rubygems.org:443 (Blocking operation timed out!) (https://rubygems.org/specs.4.8.gz)>

解决方法

方法一

打开Gemfile,将https改成http,Open the Gemfile and change first line from this:

c 复制代码
source 'https://www.rubygems.org'

to this

python 复制代码
source 'http://www.rubygems.org'

remove the 's' from 'https'.

方法二

一般方法一就可以解决了,如果不行尝试换一个网络:比如手机wifi。

Change it to another network (mobile hotspot)

方法三

关闭ipv6的配置。

参考

https://stackoverflow.com/a/47392700/15329637

https://stackoverflow.com/questions/51201517/ruby-cant-connect-to-rubygems-org

相关推荐
浪浪山小白兔几秒前
HTML5 常用事件详解
前端·html·html5
陈钇钇1 小时前
持续升级《在线写python》小程序的功能,文章页增加一键复制功能,并自动去掉html标签
python·小程序·html
钟离墨笺3 小时前
【网络协议】【http】【https】TLS1.3
网络协议·http·https
python算法(魔法师版)4 小时前
html,css,js的粒子效果
javascript·css·html
DanceDonkey13 小时前
@RabbitListener处理重试机制完成后的异常捕获
开发语言·后端·ruby
月光技术杂谈15 小时前
OSI&5G&WIFI&自组网协议层次对比
tcp/ip·5g·wifi·osi·自组网·七层模式·协议架构
浪浪山小白兔17 小时前
HTML 表单和输入标签详解
前端·html
m0_748247551 天前
【HTML+CSS】使用HTML与后端技术连接数据库
css·数据库·html
浪浪山小白兔1 天前
HTML 基础入门:核心标签全解析
前端·javascript·html
浪浪山小白兔1 天前
HTML `<head>` 元素详解
前端·html