Ruby 关于 Rails 连接服务器问题

Ruby on Rails connect to server issues

我正在与 Ruby 合作编写 Michael Hartl 编写的 Rails 教程(第三版)。我目前在第 1 章,并且已经能够在 Rails-v 4.2.0 上下载 Ruby。我已经在 Gemfile 中进行了所有调整,并成功连接到我的服务器。但是,一旦我关闭服务器,我就无法重新连接并收到一条错误消息

You cannot specify the same gem twice with different version requirements. You Specified:sqlite3 (>_0) and sqlite3 (=1.3.9)

我试图在 Google 上搜索,但没有找到答案。任何帮助或建议都会很棒!

错误消息说明了一切:

You cannot specify the same gem twice with different version requirements. You Specified:sqlite3 (>_0) and sqlite3 (=1.3.9)

您一定在 Gemfile 中错误地指定了 sqlite3 gem 两次。删除其中一个(可能是旧的),然后 运行:

bundle install

并重新启动您的 rails 服务器。

这应该可以解决您的问题。