亲测解决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

相关推荐
学不会•1 小时前
css数据不固定情况下,循环加不同背景颜色
前端·javascript·html
猫爪笔记7 小时前
前端:HTML (学习笔记)【1】
前端·笔记·学习·html
网络安全-老纪7 小时前
iOS应用网络安全之HTTPS
web安全·ios·https
爱上语文9 小时前
HTML和CSS 表单、表格练习
前端·css·html
小肚肚肚肚肚哦9 小时前
盘点浏览器盒模型中各种 width、height 、边距和位置属性
css·html
NightCyberpunk9 小时前
HTML、CSS
前端·css·html
前端Hardy13 小时前
HTML&CSS:数据卡片可以这样设计
前端·javascript·css·3d·html
xiyusec16 小时前
HTML基础
前端·html
好开心3316 小时前
javaScript交互案例2
开发语言·前端·javascript·html·ecmascript·交互
lxkj_202417 小时前
修改ffmpeg实现https-flv内容加密
网络协议·https·ffmpeg