前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >专栏 >Ruby——报错总结

Ruby——报错总结

作者头像
思索
发布2024-08-16 12:36:36
发布2024-08-16 12:36:36
17200
代码可运行
举报
运行总次数:0
代码可运行

前言

记录ruby的一些报错

错误

Could not find a valid gem 'pumagem' (>= 0) in any repository

代码语言:javascript
代码运行次数:0
运行
复制
ERROR:  Could not find a valid gem 'pumagem' (>= 0) in any repository
ERROR:  Possible alternatives: cutagem, mutagem

镜像源的问题,替换成ruby-china就好了

代码语言:javascript
代码运行次数:0
运行
复制
# gem -v
2.7.8
# gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/
https://gems.ruby-china.com/ added to sources
source https://rubygems.org/ not present in cache
# gem sources -l
*** CURRENT SOURCES ***

https://gems.ruby-china.com/

Your Gemfile lists the gem paranoia (~> 2.2) more than once.

代码语言:javascript
代码运行次数:0
运行
复制
[root@izuf63g0jydq42k49eo7zcz config]# bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and installing your bundle as root will break this application for all non-root users on this machine.
Your Gemfile lists the gem paranoia (~> 2.2) more than once.
You should probably keep only one of them.
While it's not a problem now, it could cause errors if you change the version of one of them later.
Your Ruby version is 2.5.3, but your Gemfile specified 2.5.1

我的Gemfile中指定的版本是2.5.1但是系统中ruby的实际版本是2.5.3,两种解决办法

代码语言:javascript
代码运行次数:0
运行
复制
1. 强制执行
2. 修改Gemfile.lock和Gemfile中的ruby版本,更改成系统中的版本
3. 将ruby版本回退到项目需要的版本
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019-11-12,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 前言
  • 错误
    • Could not find a valid gem 'pumagem' (>= 0) in any repository
    • Your Gemfile lists the gem paranoia (~> 2.2) more than once.
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档