Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 rvm,效果很好。
当我输入 gem list 时,它会显示 bundler 1.1.5,但会打印出哪个 bundler:找不到 bundler。
我确实安装了几次捆绑器,但没有帮助。
有什么建议么?
gem 的命令bundler不是bundlerbut bundle。所以只需bundle在你的 shell 上输入,它就会起作用:)
bundler
bundle
我可以解决这个问题:
rvm gemset use global && gem install bundler
显然gemset有问题。使用全局 gemset 后,它就像一个魅力。