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.
我是 Rails 的新手。每次我在 Linux 中打开一个新终端时,它都会告诉我缺少一些 gem。但是我已经在不同终端的同一个文件夹中安装了 gem。所以谁能告诉我如何解决这个问题。
Rails gemsets 可能有点棘手。它可以是全局的、特定于 Rails 版本的或特定于项目的。我猜你正在使用全局 gemset。在您的项目终端中,您可以运行
gem list
查看项目中可用的 gem。如果在列表中没有找到,请确保在 gemfile 中有它。然后再次运行
bundle install