🥳 rubyinstaller.cn 正式运行!
此站点现由上海交通大学软件源镜像服务提供所有镜像。我对此表示最诚挚的感谢!此举改变了国内用户在 Windows 上安装 Ruby 不便的多年难堪局面,惠及了一大批潜在的 Ruby 用户。饮水思源,希望所有受益者能够如 Ruby 之父 Matz 所说的:
Use Ruby to make the world better.
网站会接着逐步完善,尽量与上游信息保持一致,欢迎各种形式的反馈和讨论。
rubyinstaller.cn-website 源代码
太快了!
exciting
官方的地址重定向到亚马逊的 S3,国内速度感人,开了梯子下,一定时间内没下玩 Token 就过期了,返回 403 了。 用腾讯云的服务器的 wget 下依然渣渣,后面搞了个阿里云的 1 个小时的按需付费实例,北京区域的秒下~~然后搭了 ftp 从服务器上下来,可谓真艰难的曲线救国。 顶起来!幸苦楼主了!
太棒了
棒啊
https://ruby-china.org/topics/40842
我跑起来了,感谢(安装就是一路回车,没怎么管拉取失败的错误)
另外我的环境遇到问题,提示:tzinfo-data is not present. Please add gem 'tzinfo-data' to your Gemfile and run bundle install
操作系统:win11 ruby版本:ruby 3.1.1p18 (2022-02-18 revision 53f5fc4236) [x64-mingw-ucrt] rails版本:Rails 7.0.2.3
1、修改 Gemfile
# gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
2、执行命令
gem uninstall tzinfo-data
3、修改 Gemfile
# gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ] gem "tzinfo-data"
4、重新安装依赖
bundle install
5、本地端口被占会提示权限错误,指定端口启动
rails s -p 888