在Centos上安装Sidekiq之后,我尝试使用以下命令启动Sidekiq (Sidekiq使用它):
bundle exec sidekiq但我得到的是:
tupromail@be-s2534-msl:~/cuttlefish-master$ bundle exec sidekiq
Warning: the running version of Bundler is older than the version that created the lockfile. We suggest you upgrade to the latest version of Bundler by running `gem install bundler`.
bundler: command not found: sidekiq
Install missing gem executables with `bundle install`问题是安装了Sidekiq,我在运行时看到了它
bundle install我明白了:
Using sidekiq 3.3.0此外,似乎Sidekiq可执行文件也在那里:
tupromail@be-s2534-msl:~/cuttlefish-master$ gem uninstall sidekiq
Remove executables:
sidekiq, sidekiqctl
in addition to the gem? [Yn]有什么想法吗?
发布于 2019-05-22 10:39:47
将bundler更新到最新版本,然后:
bundle install sidekiq
然后重试,出现此问题是因为捆绑程序的版本与Gemfile.lock中的版本不同
https://stackoverflow.com/questions/42411957
复制相似问题