在我决定尝试清单插件之前,我让Redmin4.0.4工作得很好。我试着遵循官方网站上的指示:https://www.redmineup.com/pages/help/checklists/installing-redmine-checklists-plugin-on-linux
但是在执行命令时:
bundle install --without development test --no-deployment我拿到了这个:
Installing locked Bundler version 2.0.2...
Installing the inferred bundler version (= 2.0.2) failed.
If you'd like to update to the current bundler version (1.15.1) in this project, run `bundle update --bundler`.
The error was: bundler requires Ruby version >= 2.3.0.首先,我不明白为什么红宝石版本错误,2.3.0,我有2.5.0p0.
第二,如果我输入了bundler -v,我就会看到输出显示我在这个版本2.0.2中。
第三,如果我试图运行包更新-这就是输出:
You must use Bundler 2 or greater with this lockfile.我看不出怎么解决这个问题..。我能/必须做些什么?
现在我无法访问redmine,我在试图打开站点时出错了:
Could not find gem 'redmine_crm' in any of the gem sources listed in your Gemfile. (Bundler::GemNotFound)如果我不能安装插件,至少我想让redmine重新上线。
谢谢
发布于 2019-08-21 06:08:07
尝试以下步骤
gem uninstall -aIxgem install bundlerbundle install --without development testhttps://stackoverflow.com/questions/57565213
复制相似问题